Skip to content

Commit 0a54f3e

Browse files
committed
debug info
1 parent 444cf45 commit 0a54f3e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lifecycleScripts/retrieveExternalDependencies.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ function getVendorLib(name, url) {
3535

3636
var version = vendorPackage.sha || vendorPackage.version;
3737

38-
console.info("[nodegit] Detecting " + vendorPath + ".");
38+
console.info("[nodegit] Detecting " + vendorPath + version + ".");
3939
return check(name)
4040
.then(function(exists) {
4141
if (exists) {
42-
console.info("[nodegit] " + vendorPath + " already exists.");
42+
console.info("[nodegit] " + vendorPath + version + " already exists.");
4343
return Promise.resolve();
4444
}
4545
else {
@@ -95,7 +95,7 @@ function getVendorLib(name, url) {
9595
}
9696
})
9797
.then(function() {
98-
console.info("[nodegit] Successfully updated " + vendorPath + ".");
98+
console.info("[nodegit] Successfully updated " + vendorPath + version + ".");
9999
});
100100
}
101101
});

0 commit comments

Comments
 (0)