Skip to content

Commit c42c248

Browse files
authored
Rollup merge of rust-lang#134123 - Zalathar:json-output, r=jieyouxu,clubby789
bootstrap: Forward cargo JSON output to stdout, not stderr This fixes the RA errors I've been seeing on proc-macros after the re-landing of rust-lang#134040. r? clubby789
2 parents 0f1b827 + 604ba92 commit c42c248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/bootstrap/src/core/build_steps/compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2261,7 +2261,7 @@ pub fn stream_cargo(
22612261
Ok(msg) => {
22622262
if builder.config.json_output {
22632263
// Forward JSON to stdout.
2264-
eprintln!("{line}");
2264+
println!("{line}");
22652265
}
22662266
cb(msg)
22672267
}

0 commit comments

Comments
 (0)