We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fa18a0 commit 04c7f88Copy full SHA for 04c7f88
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.to_string())
+ error!("{}", e.to_string());
40
+ std::process::exit(1);
41
}
42
43
0 commit comments