Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

Commit

Permalink
Add node-gyp parameter --build_v8_with_gn=false
Browse files Browse the repository at this point in the history
  • Loading branch information
daviwil committed Jun 22, 2018
1 parent 72fb25d commit 25aebf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const os = require('os');
const path = require('path');
const spawn = require('child_process').spawn;

const p = spawn(os.platform() === 'win32' ? 'node-gyp.cmd' : 'node-gyp', ['rebuild'], {
const p = spawn(os.platform() === 'win32' ? 'node-gyp.cmd' : 'node-gyp', ['rebuild', '--build_v8_with_gn=false'], {
cwd: path.join(__dirname, '..'),
stdio: 'inherit'
});
Expand Down

0 comments on commit 25aebf8

Please sign in to comment.