Skip to content

Commit 9526afc

Browse files
committed
x.py fmt
1 parent 2dd49c6 commit 9526afc

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: src/bootstrap/src/core/builder.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -2177,11 +2177,7 @@ impl<'a> Builder<'a> {
21772177
}
21782178

21792179
// 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-
}
2180+
if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
21852181
}
21862182

21872183
/// Checks if any of the "should_run" paths is in the `Builder` paths.

0 commit comments

Comments
 (0)