Prevent silently ignoring unmatched paths

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.
This commit is contained in:
Mark Simulacrum 2018-02-15 18:01:26 -07:00
parent 1670a532dd
commit e78ecd2e70

View File

@ -217,7 +217,7 @@ impl StepDescription {
}
if !attempted_run {
eprintln!("Warning: no rules matched {}.", path.display());
panic!("Error: no rules matched {}.", path.display());
}
}
}