summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-06-15 07:50:36 -0700
committerGitHub <noreply@github.com>2019-06-15 07:50:36 -0700
commit9142a7df46fd1335c9ee007edcc4e83eb589a794 (patch)
tree09daf44ae98726fc2945e1625532e9ba2462c944
parent061f6dd4832320ff654ee2a7a07901852b702639 (diff)
Upgrade INSTALLER_URL to include fixes (#2532)
denoland/deno_std#492
-rw-r--r--cli/flags.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/flags.rs b/cli/flags.rs
index d3166441c..0e1110bba 100644
--- a/cli/flags.rs
+++ b/cli/flags.rs
@@ -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/std@v0.7.0/prettier/main.ts";
/// Used for `deno install...` subcommand
-const INSTALLER_URL: &str = "https://deno.land/std@a3015be/installer/mod.ts";
+const INSTALLER_URL: &str = "https://deno.land/std@1679ba/installer/mod.ts";
/// These are currently handled subcommands.
/// There is no "Help" subcommand because it's handled by `clap::App` itself.