node-pre-gyp
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -49,2 +49,3 @@ | ||
} | ||
console.log(args); | ||
var cmd = cp.spawn(shell_cmd,args, {cwd: undefined, env: process.env, customFds: [ 0, 1, 2]}); | ||
@@ -195,3 +196,3 @@ cmd.on('error', function (err) { | ||
|| gyp.opts['build-from-source'] === package_json.name)) { | ||
return compile(gyp.opts.argv.original,callback); | ||
return compile(['rebuild'],callback); | ||
} | ||
@@ -223,6 +224,6 @@ var module_version = semver.parse(package_json.version); | ||
log.verbose('build','source compile required'); | ||
compile(gyp.opts.argv.original,callback); | ||
compile(['rebuild'],callback); | ||
} else { | ||
test_binary(opts,function(err) { | ||
if (err) compile(gyp.opts.argv.original,callback); | ||
if (err) compile(['rebuild'],callback); | ||
return callback(); | ||
@@ -229,0 +230,0 @@ }); |
{ | ||
"name": "node-pre-gyp", | ||
"description": "Node.js native addon binary install tool", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"keywords": [ | ||
@@ -6,0 +6,0 @@ "native", |
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
578
22427