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

fix(bundler): Detect “Please make sure you have the correct access rights”

parent 6d3966c7
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,11 @@ export async function updateArtifacts(
if (
(err.stdout &&
err.stdout.includes('Please supply credentials for this source')) ||
(err.stderr && err.stderr.includes('Authentication is required'))
(err.stderr && err.stderr.includes('Authentication is required')) ||
(err.stderr &&
err.stderr.includes(
'Please make sure you have the correct access rights'
))
) {
logger.info(
{ err },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment