diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2018-08-02 11:59:27 -0600 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2018-09-12 13:31:54 -0600 |
| commit | b58589352ee66cfb541cbf88eb493f2ed9a29b00 (patch) | |
| tree | ee27f6b52e44495201911fc882f55653719bced2 | |
| parent | e792d1d96a88dbf737675de0682d82b7ddff8984 (diff) | |
| download | rust-b58589352ee66cfb541cbf88eb493f2ed9a29b00.tar.gz rust-b58589352ee66cfb541cbf88eb493f2ed9a29b00.zip | |
Do not print checking messages in dry run mode
| -rw-r--r-- | src/bootstrap/check.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index 04de97b5315..6984940b0a6 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -44,7 +44,7 @@ impl Step for Std { std_cargo(builder, &compiler, target, &mut cargo); let _folder = builder.fold_output(|| format!("stage{}-std", compiler.stage)); - println!("Checking std artifacts ({} -> {})", &compiler.host, target); + builder.info(&format!("Checking std artifacts ({} -> {})", &compiler.host, target)); run_cargo(builder, &mut cargo, vec![], @@ -89,7 +89,7 @@ impl Step for Rustc { rustc_cargo(builder, &mut cargo); let _folder = builder.fold_output(|| format!("stage{}-rustc", compiler.stage)); - println!("Checking compiler artifacts ({} -> {})", &compiler.host, target); + builder.info(&format!("Checking compiler artifacts ({} -> {})", &compiler.host, target)); run_cargo(builder, &mut cargo, vec![], @@ -177,7 +177,7 @@ impl Step for Test { test_cargo(builder, &compiler, target, &mut cargo); let _folder = builder.fold_output(|| format!("stage{}-test", compiler.stage)); - println!("Checking test artifacts ({} -> {})", &compiler.host, target); + builder.info(&format!("Checking test artifacts ({} -> {})", &compiler.host, target)); run_cargo(builder, &mut cargo, vec![], |
