@lynx-js/lynxtron-rebuild 0.0.1-alpha.11 → 0.0.1-alpha.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +2 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -123,7 +123,8 @@ async function rebuildModule(modulePath, headersDir, electronVersion, arch) {
|
|
|
123
123
|
|
|
124
124
|
const nodeGyp = spawn('npx', ['node-gyp', ...args], {
|
|
125
125
|
cwd: modulePath,
|
|
126
|
-
stdio: 'inherit'
|
|
126
|
+
stdio: 'inherit',
|
|
127
|
+
shell: true
|
|
127
128
|
});
|
|
128
129
|
|
|
129
130
|
nodeGyp.on('error', (err) => {
|