From 63bbe2a2e041388ec167d67c73f497ea7b8590c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 14 Aug 2019 02:03:29 +0200 Subject: ci: bump to v0.15.0 (denoland/deno_std#556) Original: https://github.com/denoland/deno_std/commit/f3ddb4f26b81b4fbed86f4b54db7b3e7e3b7fe4e --- installer/mod.ts | 2 +- installer/test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'installer') diff --git a/installer/mod.ts b/installer/mod.ts index c38f1dbd4..d6ebedbd4 100644 --- a/installer/mod.ts +++ b/installer/mod.ts @@ -227,7 +227,7 @@ export async function install( // ensure script that is being installed exists const ps = run({ - args: [Deno.execPath, "fetch", "--reload", moduleUrl], + args: [Deno.execPath(), "fetch", "--reload", moduleUrl], stdout: "inherit", stderr: "inherit" }); diff --git a/installer/test.ts b/installer/test.ts index 2309be443..2fd36e91e 100644 --- a/installer/test.ts +++ b/installer/test.ts @@ -16,7 +16,7 @@ const isWindows = Deno.platform.os === "win"; async function startFileServer(): Promise { fileServer = run({ args: [ - Deno.execPath, + Deno.execPath(), "run", "--allow-read", "--allow-net", -- cgit v1.2.3