Skip to content

Commit

Permalink
Prevent silently ignoring unmatched paths
Browse files Browse the repository at this point in the history
Primarily for CI purposes; this is intended to avoid cases where we
update rustbuild and unintentionally make CI stop running some builds to
the arguments being passed no longer applying for some reason.
  • Loading branch information
Mark-Simulacrum committed Feb 16, 2018
1 parent 1670a53 commit e78ecd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/builder.rs
Expand Up @@ -217,7 +217,7 @@ impl StepDescription {
}

if !attempted_run {
eprintln!("Warning: no rules matched {}.", path.display());
panic!("Error: no rules matched {}.", path.display());
}
}
}
Expand Down

0 comments on commit e78ecd2

Please sign in to comment.