Skip to content

Commit 9789e01

Browse files
author
John Haley
committed
Merge pull request nodegit#951 from 'Gum-Joe/fix-install-issue-username-space-windows'
Put the path to node-pre-gyp in quotes in install.js
2 parents 89455f4 + 971527b commit 9789e01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lifecycleScripts/install.js

+1-1
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)