Skip to content

Commit

Permalink
fix: remove unnecessary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed Feb 21, 2024
1 parent e814ca5 commit 63676f8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/command_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ fn wait_on_child(cmd: &Command, program: &str, child: &mut Child) -> Result<(),
));
}
};
println!("{}", status);

if status.success() {
Ok(())
Expand Down Expand Up @@ -320,8 +319,6 @@ pub(crate) fn spawn(
}
}

println!("running: {:?}", cmd);

let cmd = ResetStderr(cmd);
let child = cmd.0.stderr(cargo_output.stdio_for_warnings()).spawn();
match child {
Expand Down

0 comments on commit 63676f8

Please sign in to comment.