Ensure non-zero exit code if 'balance' command fails
This commit is contained in:
parent
c52d4eca0b
commit
f11aa4a57b
|
@ -243,6 +243,7 @@ fn process_command(
|
|||
}
|
||||
Err(error) => {
|
||||
println!("An error occurred: {:?}", error);
|
||||
Err(error)?;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue