Use shell for pkg

This commit is contained in:
Sander Declerck 2025-11-28 10:56:34 +01:00
parent a013141118
commit ae514d60d8
No known key found for this signature in database

View file

@ -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) => {