diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-05-03 23:15:16 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-03 17:15:16 -0400 |
commit | f6a9d7d7172df6422f895dcfe6f4267ad1b472da (patch) | |
tree | 086a9e3e75e7597f2d456c26749d9d9d64e51990 /cli/main.rs | |
parent | 36081171323e266760db8bed2f31a6e3be7d8839 (diff) |
add "deno run" subcommand (#2215)
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 5a6efa073..8bef2d2ff 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -300,6 +300,7 @@ fn main() { DenoSubcommand::Repl => run_repl(flags, argv), DenoSubcommand::Run => run_script(flags, argv), DenoSubcommand::Types => types_command(), + DenoSubcommand::Version => run_script(flags, argv), DenoSubcommand::Xeval => xeval_command(flags, argv), } } |