From 9142a7df46fd1335c9ee007edcc4e83eb589a794 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 15 Jun 2019 07:50:36 -0700 Subject: [PATCH] Upgrade INSTALLER_URL to include fixes (#2532) denoland/deno_std#492 --- cli/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/flags.rs b/cli/flags.rs index d3166441cf..0e1110bbac 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 ...` 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.