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

fix: await handleError

parent d0af557a
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,8 @@ async function renovateRepository(repoConfig, token) {
await validatePrs(commonConfig || config);
return res;
} catch (err) /* istanbul ignore next */ {
return handleError(config, err);
const res = await handleError(config, err);
return res;
} finally {
logger.setMeta({ repository: config.repository });
config.branchPrefix = commonConfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment