We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aea2b3 commit c06f14bCopy full SHA for c06f14b
install.js
@@ -183,10 +183,10 @@ function guardGenerated() {
183
console.info("[nodegit] Installing all devDependencies");
184
return exec("npm install --ignore-scripts --dont-prepublish")
185
.then(function() {
186
- exec("npm run generateJson");
+ return exec("npm run generateJson");
187
})
188
189
- exec("npm run generateNativeCode");
+ return exec("npm run generateNativeCode");
190
});
191
192
}
0 commit comments