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

fix: pass through migratedConfig warnings

parent 171cdf37
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,11 @@ async function mergeRenovateConfig(config) {
.join(', ');
throw error;
}
if (migratedConfig.warnings) {
returnConfig.warnings = returnConfig.warnings.concat(
migratedConfig.warnings
);
}
delete migratedConfig.errors;
delete migratedConfig.warnings;
logger.debug({ config: migratedConfig }, 'renovate.json migrated config');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment