diff options
author | Jacob Gee-Clarke <jacob@jacobgc.me> | 2020-07-06 04:58:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 23:58:23 -0400 |
commit | 79610378d3001757b7664a0cefa8fc99125f5a18 (patch) | |
tree | 229630a006359ae01f5422c8fcd02e3790731c89 /cli/main.rs | |
parent | c3c13351a9f26f2209b51b8ded5e8f2a1ad86e94 (diff) |
feat(cli): Added support for the --cert flag with 'deno upgrade' (#6609)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 3f5b9f734..7e61504d0 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -733,7 +733,8 @@ pub fn main() { force, dry_run, version, - } => upgrade_command(dry_run, force, version).boxed_local(), + ca_file, + } => upgrade_command(dry_run, force, version, ca_file).boxed_local(), _ => unreachable!(), }; |