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

fix(bundler): catch and warn about missing credentials

parent 40964d16
No related branches found
No related tags found
No related merge requests found
......@@ -154,9 +154,15 @@ async function getArtifacts(
) {
throw new Error('bundler-fs');
}
if (
err.stdout &&
err.stdout.includes('Please supply credentials for this source')
) {
throw new Error('bundler-credentials');
}
logger.info(
{ err, message: err.message },
'Failed to generate bundler.lock (unknown error)'
'Failed to generate Gemfile.lock (unknown error)'
);
throw new Error('bundler-unknown');
}
......
......@@ -327,6 +327,10 @@ async function processBranch(branchConfig, prHourlyLimitReached, packageFiles) {
logger.warn(
'It is necessary to run Renovate in gitFs mode - contact your bot administrator'
);
} else if (err.message === 'bundler-credentials') {
logger.warn(
'Bundler credentials are necessary in order to generate Gemfile.lock updates'
);
} else if (err.message === 'bundler-unknown') {
logger.warn('Unknown bundler error');
} else if (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment