File size: 427 Bytes
19605ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict'

const os = require('os');
const path = require('path');
const spawn = require('child_process').spawn;

const gypArgs = ['rebuild'];
if (process.env.NODE_PTY_DEBUG) {
  gypArgs.push('--debug');
}
const gypProcess = spawn(os.platform() === 'win32' ? 'node-gyp.cmd' : 'node-gyp', gypArgs, {
  cwd: path.join(__dirname, '..'),
  stdio: 'inherit'
});

gypProcess.on('exit', function (code) {
  process.exit(code);
});