summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
authorcrowlKats <13135287+crowlKats@users.noreply.github.com>2020-11-29 20:00:35 +0100
committerGitHub <noreply@github.com>2020-11-29 20:00:35 +0100
commit973af61d8bb03c1709f61e456581d58386ed4952 (patch)
tree1176ac2827ec79b8ff6bfd17d92dcdd0866a8210 /cli/main.rs
parent47a16d21186bfcd7c03f81af6aa30be6620f640a (diff)
feat(cli/tools/upgrade): canary support (#8476)
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs9
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(),
}
}