Print "imag-<tool>" rather than only "<tool>"
The error output should note "imag-<tool> exited with ..." rather than only "<tool> exited with ..."
This commit is contained in:
parent
3b138ba881
commit
85d1c632d3
1 changed files with 2 additions and 2 deletions
|
@ -219,8 +219,8 @@ fn main() {
|
|||
{
|
||||
Ok(exit_status) => {
|
||||
if !exit_status.success() {
|
||||
debug!("{} exited with non-zero exit code: {:?}", subcommand, exit_status);
|
||||
println!("{} exited with non-zero exit code", subcommand);
|
||||
debug!("imag-{} exited with non-zero exit code: {:?}", subcommand, exit_status);
|
||||
println!("imag-{} exited with non-zero exit code", subcommand);
|
||||
exit(exit_status.code().unwrap_or(1));
|
||||
}
|
||||
debug!("Successful exit!");
|
||||
|
|
Loading…
Reference in a new issue