Skip to content

Commit 604ba92

Browse files
committed
bootstrap: Forward cargo JSON output to stout, not stderr
1 parent b597d2a commit 604ba92

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)