diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-06-14 19:05:06 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-14 10:05:06 -0700 |
commit | 3dff147d0ca1a2cd8d264d20a178d71cb38b1c4e (patch) | |
tree | 71a0ee8049e4452df471e0a7321435039c7a6f27 /cli/main.rs | |
parent | 52448f351d7b0882ac67e2974b93c1e730f5dbb3 (diff) |
feat: add deno install command (#2522)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index ae453f70f..ef132927e 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -347,6 +347,7 @@ fn main() { DenoSubcommand::Eval => eval_command(flags, argv), DenoSubcommand::Fetch => fetch_or_info_command(flags, argv, false), DenoSubcommand::Info => fetch_or_info_command(flags, argv, true), + DenoSubcommand::Install => run_script(flags, argv), DenoSubcommand::Repl => run_repl(flags, argv), DenoSubcommand::Run => run_script(flags, argv), DenoSubcommand::Types => types_command(), |