Fix failures not returning a bad exit code

pull/38/head
Chip Senkbeil 3 years ago
parent 8fd4047b57
commit fa71e40982
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -25,6 +25,7 @@ pub fn run() {
init_logging(&opt.common);
if let Err(x) = opt.subcommand.run(opt.common) {
error!("{}", x);
std::process::exit(-1);
}
}

Loading…
Cancel
Save