remove: unneeded print

This commit is contained in:
iff 2023-07-31 14:19:20 +02:00
parent 1b7b11bd3f
commit 3a4239e7ee

View file

@ -19,7 +19,6 @@ pub fn command_output(shell: &str, command: &str) -> String {
fn last_command(shell: &str) -> String {
let last_command = std::env::var("_PR_LAST_COMMAND").expect("No _PR_LAST_COMMAND in environment. Did you aliased the command with the correct argument?");
println!("last_command: {}", last_command);
match shell {
"bash" => {
let first_line = last_command.lines().next().unwrap();