From 311257e6d449f89f2499e3d9e4f63a905b245f10 Mon Sep 17 00:00:00 2001 From: Christoph Settgast Date: Sun, 21 Apr 2024 18:00:08 +0200 Subject: [PATCH] ci: fix after node windows requiring shell true See https://nodejs.org/en/blog/vulnerability/april-2024-security-releases-2 --- install.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.js b/install.js index e108d0bf5..b7f1da5e0 100644 --- a/install.js +++ b/install.js @@ -4,6 +4,7 @@ const process = require('process'); if (process.platform === 'win32') { spawnSync('npm.cmd', ['run', 'node-gyp-build'], { input: 'win32 detected. Ensure native code prebuild or rebuild it', + shell: true, stdio: 'inherit' }); -} \ No newline at end of file +}