mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
fix: do not warn when lerna subdirectories not found (#762)
This commit is contained in:
parent
1a395a3dd9
commit
47df66143b
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ async function checkForLerna(config) {
|
||||||
}
|
}
|
||||||
return { lernaPackages };
|
return { lernaPackages };
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
config.logger.warn('lerna getSubDirectories error');
|
config.logger.info('could not find any lerna subdirectories');
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue