Skip to content

Commit

Permalink
exit(1)
Browse files Browse the repository at this point in the history
  • Loading branch information
tangowithfoxtrot committed Oct 17, 2023
1 parent 2932f51 commit 790b1be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bws/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ async fn process_commands() -> Result<()> {
let Some(command) = cli.command else {
let mut cmd = Cli::command();
eprintln!("{}", cmd.render_help().ansi());
return Ok(());
std::process::exit(1);
};

// These commands don't require authentication, so we process them first
Expand Down

0 comments on commit 790b1be

Please sign in to comment.