-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathinstall.js
executable file
·68 lines (52 loc) · 1.66 KB
/
install.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env node
var movedFile = false;
if (["linux", "win32"].indexOf(process.platform) !== -1)
return;
var fs = require('fs');
var path = require('path');
var src = path.join(__dirname, '..', 'compile.py');
var dst = path.join(__dirname, '..', 'binding.gyp');
fs.renameSync(src, dst);
movedFile = true;
//npm_execpath: '/usr/local/lib/node_modules/npm/bin/npm-cli.js',
var nodegyp = path.join(process.env.npm_execpath,
'..',
'node-gyp-bin',
'node-gyp');
if (!fs.existsSync(nodegyp))
nodegyp = path.join(process.execPath,
'..',
'..',
'lib',
'node_modules',
'npm',
'bin',
'node-gyp-bin',
'node-gyp');
if (!fs.existsSync(nodegyp)) {
console.error('cannot locate npm install');
return;
}
var spawn = require('child_process').spawn;
var stdio = 'ignore';
if (process.env.V)
stdio = 'inherit';
var options = {
cwd: path.join(__dirname, '..'),
stdio: stdio
};
var child = spawn(nodegyp, ['rebuild'], options);
child.on('close', function(code, signal) {
if ((code || signal) && process.env.V === undefined) {
console.error('---------------');
console.error('Building dtrace-provider failed with exit code %d and signal %d',
code, signal);
console.error('re-run install with environment variable V set to see the build output');
console.error('---------------');
}
process.exit(0);
});
process.on('exit', function() {
if (movedFile)
fs.renameSync(dst, src);
});