From 8ba0b7d8c44f0e82b3a22b054279dfeb8af81c74 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 17 Apr 2024 12:41:06 +0100 Subject: [PATCH] Update hak fetch script for compatibility with latest NodeJS Security Release Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- scripts/hak/fetch.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/hak/fetch.ts b/scripts/hak/fetch.ts index d1bf61d9..84541c82 100644 --- a/scripts/hak/fetch.ts +++ b/scripts/hak/fetch.ts @@ -44,6 +44,7 @@ export default async function fetch(hakEnv: HakEnv, moduleInfo: DependencyInfo): const proc = childProcess.spawn(hakEnv.isWin() ? "yarn.cmd" : "yarn", ["install", "--ignore-scripts"], { stdio: "inherit", cwd: moduleInfo.moduleBuildDir, + shell: true, }); proc.on("exit", (code) => { code ? reject(code) : resolve();