Skip to content

Commit 33efede

Browse files
committed
fixed issue in install script for windows
1 parent bb8c535 commit 33efede

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

install/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ var args = process.env.CI === 'true' ? ['rebuild', '--debug'] : ['rebuild'];
33
var child = require('child_process').spawn('node-gyp', args, {
44
encoding: 'utf8',
55
stdio: 'inherit',
6-
cwd: require('path').dirname(__dirname)
6+
cwd: require('path').dirname(__dirname),
7+
shell: true
78
});
89

910
child.on('exit', function (code) {

0 commit comments

Comments
 (0)