fix: undo old changes

This commit is contained in:
Raiyan 2022-05-25 22:12:50 -04:00
parent d25f64ae99
commit 392077df24
2 changed files with 2 additions and 2 deletions

View File

@ -1426,7 +1426,7 @@ pub fn stream_cargo(
cb(msg)
}
// If this was informational, just print it out and continue
Err(_) => eprintln!("{}", line),
Err(_) => println!("{}", line),
}
}

View File

@ -37,7 +37,7 @@ pub fn tmpdir(builder: &Builder<'_>) -> PathBuf {
fn missing_tool(tool_name: &str, skip: bool) {
if skip {
eprintln!("Unable to build {}, skipping dist", tool_name)
println!("Unable to build {}, skipping dist", tool_name)
} else {
panic!("Unable to build {}", tool_name)
}