Skip to content

Commit

Permalink
fix: undo old changes
Browse files Browse the repository at this point in the history
  • Loading branch information
raiyansayeed committed May 26, 2022
1 parent d25f64a commit 392077d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bootstrap/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 392077d

Please sign in to comment.