summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 7e61504d0..5c54a87ca 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -733,8 +733,11 @@ pub fn main() {
force,
dry_run,
version,
+ output,
ca_file,
- } => upgrade_command(dry_run, force, version, ca_file).boxed_local(),
+ } => {
+ upgrade_command(dry_run, force, version, output, ca_file).boxed_local()
+ }
_ => unreachable!(),
};