Skip to content

Commit b259b05

Browse files
committed
Merge pull request #779 from nodegit/print-errors-downloading
Log error when downloading from aws
2 parents c9e83e9 + 43b3851 commit b259b05

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lifecycleScripts/install.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ return whichNativeNodish("..")
4444
function() {
4545
console.info("[nodegit] Completed installation successfully.");
4646
},
47-
function() {
47+
function(err) {
4848
console.info("[nodegit] Failed to install prebuilt binary, " +
4949
"building manually.");
50+
console.error(err);
5051
return prepareAndBuild();
5152
}
5253
);

0 commit comments

Comments
 (0)