Skip to content
Snippets Groups Projects
Commit 2c3fcf08 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

Improve error messages

parent 8de6e56a
Branches
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ initializeGitHub()
.then(determineUpgrades)
.then(processUpgradesSequentially)
.catch(err => {
console.log('updateDependency error: ' + err);
console.log('renovate caught error: ' + err);
});
function validateArguments() {
......@@ -108,6 +108,7 @@ function updateDependency(depType, depName, currentVersion, nextVersion) {
console.log('Response body: ' + error.response.body);
throw error;
}
// Otherwise we swallow this error and continue
});
}
function ensureCommit() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment