diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2020-09-02 16:00:47 -0400 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2020-09-02 16:00:47 -0400 |
| commit | 22769917b0c55786540f2445c6e04fa95fe82c2f (patch) | |
| tree | a564bfc0b69824aef31b7c5e5abd031668eb3078 /src/bootstrap | |
| parent | da897dfb6daa268a965d2d73620316ba56020a19 (diff) | |
Avoid spurious print outs during dryrun
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/check.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index 9f34bb4e6cc..1e26e7754aa 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -160,12 +160,12 @@ macro_rules! tool_check_step { &[], ); - println!( + builder.info(&format!( "Checking {} artifacts ({} -> {})", stringify!($name).to_lowercase(), &compiler.host.triple, target.triple - ); + )); run_cargo( builder, cargo, |
