diff options
author | crowlKats <13135287+crowlKats@users.noreply.github.com> | 2020-07-07 00:21:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 18:21:26 -0400 |
commit | 2b52e3daf168c6fd0f3d13afcd827cc5b3a284ca (patch) | |
tree | 359409331bd6bdd2ece071769e929d922aa31b2e /cli/main.rs | |
parent | 5c43131be1a36671fd564b82709e11dff66488f3 (diff) |
feat: deno upgrade --output (#6352)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 5 |
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!(), }; |