diff options
Diffstat (limited to 'installer')
| -rw-r--r-- | installer/mod.ts | 2 | ||||
| -rw-r--r-- | installer/test.ts | 2 |
2 files changed, 2 insertions, 2 deletions
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<void> { fileServer = run({ args: [ - Deno.execPath, + Deno.execPath(), "run", "--allow-read", "--allow-net", |
