diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cli/main.rs b/cli/main.rs index de2e1b402..6c48a75f6 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -952,13 +952,14 @@ fn get_subcommand( DenoSubcommand::Upgrade { force, dry_run, + canary, version, output, ca_file, - } => { - tools::upgrade::upgrade_command(dry_run, force, version, output, ca_file) - .boxed_local() - } + } => tools::upgrade::upgrade_command( + dry_run, force, canary, version, output, ca_file, + ) + .boxed_local(), } } |