Commit 7ef08f45 by Adeel

Code: Moves temp return after the condition.

So manual build can kick in.
parent b5b8ce6d
......@@ -119,13 +119,12 @@ function testBinary(options) {
return;
}
return; // TODO: remove it once TravisCI build pass 90% and above tests
fs.stat(path.join(__dirname, '..', 'vendor', options.bin, 'binding.node'), function (err) {
if (err) {
return build(options);
}
return; // TODO: remove it once TravisCI build pass 90% and above tests
console.log('`' + options.bin + '` exists; testing');
var total;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment