File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ async function main(argv = process.argv) {
78
78
stdio : [ 'inherit' , 'inherit' , 'inherit' ] ,
79
79
windowsHide : true ,
80
80
encoding : 'utf-8' ,
81
- shell : ( platform === 'win32' ) ? true : false ,
81
+ shell : platform === 'win32' ? true : false ,
82
82
} ) ;
83
83
} else {
84
84
console . error ( 'Skipping node-gyp install due to specified `nodedir`' ) ;
@@ -101,7 +101,7 @@ async function main(argv = process.argv) {
101
101
stdio : [ 'inherit' , 'inherit' , 'inherit' ] ,
102
102
windowsHide : true ,
103
103
encoding : 'utf-8' ,
104
- shell : ( platform === 'win32' ) ? true : false ,
104
+ shell : platform === 'win32' ? true : false ,
105
105
} ) ;
106
106
107
107
const buildArgs = [
@@ -124,7 +124,7 @@ async function main(argv = process.argv) {
124
124
stdio : [ 'inherit' , 'inherit' , 'inherit' ] ,
125
125
windowsHide : true ,
126
126
encoding : 'utf-8' ,
127
- shell : ( platform === 'win32' ) ? true : false ,
127
+ shell : platform === 'win32' ? true : false ,
128
128
} ) ;
129
129
130
130
const projectRoot = path . join ( __dirname , '..' ) ;
You can’t perform that action at this time.
0 commit comments