diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2024-12-10 23:09:00 +1100 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2024-12-10 23:09:00 +1100 |
| commit | 604ba9214d132c5b601f57dae2a161be35953b9f (patch) | |
| tree | dc9dd1ea4a7a6e57c3d068bb5046068cd07fa939 /src | |
| parent | b597d2a099a1b5b79acef05175a9ac847047f8a1 (diff) | |
bootstrap: Forward cargo JSON output to stout, not stderr
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/src/core/build_steps/compile.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs index 4419b11ac19..93f8091299f 100644 --- a/src/bootstrap/src/core/build_steps/compile.rs +++ b/src/bootstrap/src/core/build_steps/compile.rs @@ -2261,7 +2261,7 @@ pub fn stream_cargo( Ok(msg) => { if builder.config.json_output { // Forward JSON to stdout. - eprintln!("{line}"); + println!("{line}"); } cb(msg) } |
