From 973af61d8bb03c1709f61e456581d58386ed4952 Mon Sep 17 00:00:00 2001 From: crowlKats <13135287+crowlKats@users.noreply.github.com> Date: Sun, 29 Nov 2020 20:00:35 +0100 Subject: feat(cli/tools/upgrade): canary support (#8476) --- cli/main.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cli/main.rs') 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(), } } -- cgit v1.2.3