We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc050d6 commit 00a99e0Copy full SHA for 00a99e0
lifecycleScripts/clean.js
@@ -5,7 +5,7 @@ var npm = require("npm");
5
var Promise = require("nodegit-promise");
6
7
var rooted = path.join.bind(path, __dirname, "..");
8
-if (!fse.existsSync(rooted(".didntcomefromthenpmregistry"))) {
+if (fse.existsSync(rooted(".didntcomefromthenpmregistry"))) {
9
return;
10
}
11
lifecycleScripts/install.js
@@ -25,7 +25,7 @@ forNodeWebkit(local(".."))
25
console.info("[nodegit] Must build for node-webkit");
26
return checkAndBuild(nodeWebkitVersion);
27
28
- if (!fs.existsSync(local("../.didntcomefromthenpmregistry"))) {
+ if (fs.existsSync(local("../.didntcomefromthenpmregistry"))) {
29
checkAndBuild();
30
31
if (process.env.BUILD_DEBUG) {
0 commit comments