Rollup merge of #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 #134040. r? clubby789
This commit is contained in:
commit
c42c248009
1 changed files with 1 additions and 1 deletions
|
@ -2261,7 +2261,7 @@ pub fn stream_cargo(
|
||||||
Ok(msg) => {
|
Ok(msg) => {
|
||||||
if builder.config.json_output {
|
if builder.config.json_output {
|
||||||
// Forward JSON to stdout.
|
// Forward JSON to stdout.
|
||||||
eprintln!("{line}");
|
println!("{line}");
|
||||||
}
|
}
|
||||||
cb(msg)
|
cb(msg)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue