feat: refactored bootstrap files to use stderr consistently

This commit is contained in:
Raiyan
2022-05-25 22:01:55 -04:00
parent bdcb6a99e8
commit d25f64ae99
11 changed files with 40 additions and 40 deletions

View File

@@ -686,9 +686,9 @@ impl Build {
// Check for postponed failures from `test --no-fail-fast`.
let failures = self.delayed_failures.borrow();
if failures.len() > 0 {
println!("\n{} command(s) did not execute successfully:\n", failures.len());
eprintln!("\n{} command(s) did not execute successfully:\n", failures.len());
for failure in failures.iter() {
println!(" - {}\n", failure);
eprintln!(" - {}\n", failure);
}
process::exit(1);
}