Skip to content

Commit f09de3f

Browse files
authored
Use eprintln instead to print the command running next (#191)
Fixes: #128
1 parent fd56c5a commit f09de3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ impl Default for Version {
10761076
}
10771077

10781078
fn run(cmd: &mut Command, program: &str) {
1079-
println!("running: {:?}", cmd);
1079+
eprintln!("running: {:?}", cmd);
10801080
let status = match cmd.status() {
10811081
Ok(status) => status,
10821082
Err(ref e) if e.kind() == ErrorKind::NotFound => {

0 commit comments

Comments
 (0)