Skip to content

Commit c06f14b

Browse files
John Haleymaxkorp
authored andcommitted
Fixed install script
1 parent 0aea2b3 commit c06f14b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,10 @@ function guardGenerated() {
183183
console.info("[nodegit] Installing all devDependencies");
184184
return exec("npm install --ignore-scripts --dont-prepublish")
185185
.then(function() {
186-
exec("npm run generateJson");
186+
return exec("npm run generateJson");
187187
})
188188
.then(function() {
189-
exec("npm run generateNativeCode");
189+
return exec("npm run generateNativeCode");
190190
});
191191
});
192192
}

0 commit comments

Comments
 (0)