diff options
author | Mathias Lafeldt <mathias.lafeldt@gmail.com> | 2022-08-21 19:31:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 19:31:14 +0200 |
commit | e96933bc163fd81a276cbc169b17f76724a5ac33 (patch) | |
tree | 9baab891a4035c4a03b490bb81ade8b42c426d9a /cli/main.rs | |
parent | fb2aeb79a113e576ff2cc4f1bf3fc30741969508 (diff) |
chore: use Rust 1.63.0 (#15464)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/main.rs b/cli/main.rs index 17f3fcffa..8e53d1f0c 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1070,9 +1070,7 @@ pub fn main() { logger::init(flags.log_level); - let exit_code = get_subcommand(flags).await; - - exit_code + get_subcommand(flags).await }; let exit_code = unwrap_or_exit(run_local(exit_code)); |