Skip to content

Commit

Permalink
chore: lintfixed scripts/prebuild.js
Browse files Browse the repository at this point in the history
  • Loading branch information
CMCDragonkai committed Jul 13, 2022
1 parent 31d71b4 commit 1f6299d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/prebuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async function main(argv = process.argv) {
stdio: ['inherit', 'inherit', 'inherit'],
windowsHide: true,
encoding: 'utf-8',
shell: (platform === 'win32') ? true : false,
shell: platform === 'win32' ? true : false,
});
} else {
console.error('Skipping node-gyp install due to specified `nodedir`');
Expand All @@ -101,7 +101,7 @@ async function main(argv = process.argv) {
stdio: ['inherit', 'inherit', 'inherit'],
windowsHide: true,
encoding: 'utf-8',
shell: (platform === 'win32') ? true : false,
shell: platform === 'win32' ? true : false,
});

const buildArgs = [
Expand All @@ -124,7 +124,7 @@ async function main(argv = process.argv) {
stdio: ['inherit', 'inherit', 'inherit'],
windowsHide: true,
encoding: 'utf-8',
shell: (platform === 'win32') ? true : false,
shell: platform === 'win32' ? true : false,
});

const projectRoot = path.join(__dirname, '..');
Expand Down

0 comments on commit 1f6299d

Please sign in to comment.