Skip to content

Commit

Permalink
x.py fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlie Davis committed Nov 17, 2023
1 parent 2dd49c6 commit 9526afc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/bootstrap/src/core/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2177,11 +2177,7 @@ impl<'a> Builder<'a> {
}

// Only execute if it's supposed to run as default
if desc.default && should_run.is_really_default() {
self.ensure(step)
} else {
None
}
if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
}

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

0 comments on commit 9526afc

Please sign in to comment.