Skip to content

Commit 971527b

Browse files
Gum-JoeJohn Haley
authored and
John Haley
committed
Fix issue where " is required
When building on appveyor, the linter exited with 1. To fix this, we are putting an \ before "
1 parent 26a4f04 commit 971527b

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)