Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ return whichNativeNodish("..")
return checkAndBuild();
}
console.info("[nodegit] Fetching binary from S3.");
return exec("node-pre-gyp build")
return exec("node-pre-gyp install")
.then(
function() {
console.info("[nodegit] Completed installation successfully.");
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@
"install": "node lifecycleScripts/install",
"installDebug": "BUILD_DEBUG=true npm install",
"postinstall": "node lifecycleScripts/clean",
"recompile": "node-gyp configure build",
"rebuild": "node generate && node-gyp configure build",
"recompileDebug": "node-gyp configure --debug build",
"rebuildDebug": "node generate && node-gyp configure --debug build"
"recompile": "pangyp configure build",
"rebuild": "node generate && pangyp configure build",
"recompileDebug": "pangyp configure --debug build",
"rebuildDebug": "node generate && pangyp configure --debug build"
}
}