diff options
| author | Raiyan <raiyan.business@gmail.com> | 2022-05-25 22:01:55 -0400 |
|---|---|---|
| committer | Raiyan <raiyan.business@gmail.com> | 2022-05-25 22:01:55 -0400 |
| commit | d25f64ae993dfdd6a55b912fa1d46a6085205d2b (patch) | |
| tree | f1c8b733a59ce0790efc61fed3ffd23765d0ab84 /src/bootstrap/lib.rs | |
| parent | bdcb6a99e853732f8ec050ae4986aa3af51d44c5 (diff) | |
| download | rust-d25f64ae993dfdd6a55b912fa1d46a6085205d2b.tar.gz rust-d25f64ae993dfdd6a55b912fa1d46a6085205d2b.zip | |
feat: refactored bootstrap files to use stderr consistently
Diffstat (limited to 'src/bootstrap/lib.rs')
| -rw-r--r-- | src/bootstrap/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index b4b973b4247..188b80d8b3a 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -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); } |
