Skip to content

Commit 392077d

Browse files
committed
fix: undo old changes
1 parent d25f64a commit 392077d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bootstrap/compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ pub fn stream_cargo(
14261426
cb(msg)
14271427
}
14281428
// If this was informational, just print it out and continue
1429-
Err(_) => eprintln!("{}", line),
1429+
Err(_) => println!("{}", line),
14301430
}
14311431
}
14321432

src/bootstrap/dist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub fn tmpdir(builder: &Builder<'_>) -> PathBuf {
3737

3838
fn missing_tool(tool_name: &str, skip: bool) {
3939
if skip {
40-
eprintln!("Unable to build {}, skipping dist", tool_name)
40+
println!("Unable to build {}, skipping dist", tool_name)
4141
} else {
4242
panic!("Unable to build {}", tool_name)
4343
}

0 commit comments

Comments
 (0)