diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-04-19 06:35:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-19 06:35:35 +0200 |
| commit | e85b0267a47e136ac77c827f82d2277125fae426 (patch) | |
| tree | d7229fa30835b5e2a370f68e1d395c367c6f23bf | |
| parent | 9f0b16b2bbadc091d1524b5556d8ed0249871346 (diff) | |
| parent | 2c5867bab4300586462a921e6580bc213943def8 (diff) | |
| download | rust-e85b0267a47e136ac77c827f82d2277125fae426.tar.gz rust-e85b0267a47e136ac77c827f82d2277125fae426.zip | |
Rollup merge of #110507 - weihanglo:print-try-run-output, r=jyn514
boostrap: print output during building tools Fixes #110506
| -rw-r--r-- | src/bootstrap/tool.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/tool.rs b/src/bootstrap/tool.rs index 79fab00efe7..79eec6f848c 100644 --- a/src/bootstrap/tool.rs +++ b/src/bootstrap/tool.rs @@ -121,7 +121,7 @@ impl Step for ToolBuild { builder.info(&msg); let mut cargo = Command::from(cargo); - let is_expected = builder.try_run_quiet(&mut cargo); + let is_expected = builder.try_run(&mut cargo); builder.save_toolstate( tool, |
