From ae514d60d8b7bbf907d22baa85084eb095825f68 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Fri, 28 Nov 2025 10:56:34 +0100 Subject: [PATCH] Use shell for pkg --- build.js | 1 + 1 file changed, 1 insertion(+) diff --git a/build.js b/build.js index 4ef0481..e5e9f7d 100644 --- a/build.js +++ b/build.js @@ -73,6 +73,7 @@ function buildSafeChainBinary(target) { return new Promise((resolve, reject) => { const pkg = spawn("pkg", ["./build/package.json", `--target=${target}`], { stdio: "inherit", + shell: true, }); pkg.on("close", (code) => {