Merge pull request #1251 from matthiasbeyer/imag-error-output
`imag`: Print proper imag command
This commit is contained in:
commit
8006edb806
1 changed files with 2 additions and 2 deletions
|
@ -219,8 +219,8 @@ fn main() {
|
||||||
{
|
{
|
||||||
Ok(exit_status) => {
|
Ok(exit_status) => {
|
||||||
if !exit_status.success() {
|
if !exit_status.success() {
|
||||||
debug!("{} exited with non-zero exit code: {:?}", subcommand, exit_status);
|
debug!("imag-{} exited with non-zero exit code: {:?}", subcommand, exit_status);
|
||||||
println!("{} exited with non-zero exit code", subcommand);
|
eprintln!("imag-{} exited with non-zero exit code", subcommand);
|
||||||
exit(exit_status.code().unwrap_or(1));
|
exit(exit_status.code().unwrap_or(1));
|
||||||
}
|
}
|
||||||
debug!("Successful exit!");
|
debug!("Successful exit!");
|
||||||
|
|
Loading…
Reference in a new issue