Skip to content

Commit 26a4f04

Browse files
ksambhiJohn Haley
authored andcommitted
Put the path to node-pre-gyp in quotes in install.js
This is to help resolve #950
1 parent 89455f4 commit 26a4f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lifecycleScripts/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ return installPrebuilt();
3636
function installPrebuilt() {
3737
console.info("[nodegit] Fetching binary from S3.");
3838
var npg = pathForTool("node-pre-gyp");
39-
return exec(npg + " install --fallback-to-build=false")
39+
return exec('"'+ npg + '" install --fallback-to-build=false')
4040
.then(
4141
function() {
4242
console.info("[nodegit] Completed installation successfully.");

0 commit comments

Comments
 (0)