We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 573eea7 commit 304729bCopy full SHA for 304729b
1 file changed
src/main.rs
@@ -36,7 +36,8 @@ async fn main() {
36
match handle_command(cli_opts).await {
37
Ok(result) => println!("{}", result),
38
Err(e) => {
39
- error!("{}", e)
+ error!("{}", e);
40
+ std::process::exit(1);
41
}
42
43
0 commit comments