Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add deno install command #2522

Merged
merged 2 commits into from
Jun 14, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
tag INSTALLER_URL
  • Loading branch information
bartlomieju committed Jun 14, 2019
commit 74c6c0ce6326533708a3c4bfd9649bfe97e05a08
2 changes: 1 addition & 1 deletion cli/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ fn parse_run_args(mut flags: DenoFlags, matches: &ArgMatches) -> DenoFlags {
/// Used for `deno fmt <files>...` subcommand
const PRETTIER_URL: &str = "https://deno.land/[email protected]/prettier/main.ts";
/// Used for `deno install...` subcommand
const INSTALLER_URL: &str = "https://deno.land/std/installer/mod.ts";
const INSTALLER_URL: &str = "https://deno.land/std@a3015be/installer/mod.ts";

/// These are currently handled subcommands.
/// There is no "Help" subcommand because it's handled by `clap::App` itself.
Expand Down