feat: refactored bootstrap files to use stderr consistently
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user