We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e1a6fb commit ee8e0bcCopy full SHA for ee8e0bc
src/bootstrap/builder.rs
@@ -304,9 +304,7 @@ impl StepDescription {
304
if paths.is_empty() || builder.config.include_default_paths {
305
for (desc, should_run) in v.iter().zip(&should_runs) {
306
if desc.default && should_run.is_really_default() {
307
- for pathset in &should_run.paths {
308
- desc.maybe_run(builder, vec![pathset.clone()]);
309
- }
+ desc.maybe_run(builder, should_run.paths.iter().cloned().collect());
310
}
311
312
0 commit comments