We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dd49c6 commit 9526afcCopy full SHA for 9526afc
src/bootstrap/src/core/builder.rs
@@ -2177,11 +2177,7 @@ impl<'a> Builder<'a> {
2177
}
2178
2179
// Only execute if it's supposed to run as default
2180
- if desc.default && should_run.is_really_default() {
2181
- self.ensure(step)
2182
- } else {
2183
- None
2184
- }
+ if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
2185
2186
2187
/// Checks if any of the "should_run" paths is in the `Builder` paths.
0 commit comments