Skip to content

Commit

Permalink
misc error if no code or sig
Browse files Browse the repository at this point in the history
  • Loading branch information
R9295 committed Dec 11, 2024
1 parent b184ea7 commit 10cd5bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bin/cargo-ziggy/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ impl Run {
println!("⚠️ input terminated with signal {:?}!", signal);
} else if let Some(exit_code) = res.code() {
println!("⚠️ input terminated with code {:?}!", exit_code);
} else {
println!("⚠️ input terminated but we do not know why!");
}
}

Expand Down

0 comments on commit 10cd5bb

Please sign in to comment.