This commit is contained in:
Arlie Davis 2023-11-17 12:54:20 -08:00
parent e11d8d147b
commit d582f1092b

View File

@ -2178,11 +2178,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.