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

chore: error not warn when repository not found

parent cd97792e
Branches
Tags
No related merge requests found
...@@ -31,7 +31,7 @@ async function handleError(config, err) { ...@@ -31,7 +31,7 @@ async function handleError(config, err) {
return err.message; return err.message;
} else if (err.message === 'not-found') { } else if (err.message === 'not-found') {
delete config.branchList; // eslint-disable-line no-param-reassign delete config.branchList; // eslint-disable-line no-param-reassign
logger.warn('Repository is not found'); logger.error('Repository is not found');
return err.message; return err.message;
} else if (err.message === 'fork') { } else if (err.message === 'fork') {
logger.info('Repository is a fork and not manually configured - skipping'); logger.info('Repository is a fork and not manually configured - skipping');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment