Comparing version 2.0.5 to 2.0.6
@@ -40,2 +40,3 @@ var fs = require('fs') | ||
} | ||
var node = pathTo('node') | ||
var traceInfo = args['trace-info'] | ||
@@ -47,3 +48,3 @@ var stacksOnly = args['stacks-only'] | ||
var proc = spawn('node', [ | ||
var proc = spawn(node, [ | ||
'--perf-basic-prof', | ||
@@ -144,2 +145,3 @@ '-r', path.join(__dirname, 'soft-exit') | ||
var node = pathTo('node') | ||
var uid = parseInt(Math.random() * 1e9, 10).toString(36) | ||
@@ -164,3 +166,3 @@ var perfdat = '/tmp/perf-' + uid + '.data' | ||
'--', | ||
'node', | ||
node, | ||
'--perf-basic-prof', | ||
@@ -171,3 +173,3 @@ '-r', path.join(__dirname, 'soft-exit') | ||
}).on('exit', function (code) { | ||
if (code !== 0) { | ||
if (code !== 0 && code !== 143 && code !== 130) { | ||
tidy() | ||
@@ -174,0 +176,0 @@ process.exit(code) |
{ | ||
"name": "0x", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48615716
2446