1
0
Fork 0

Fix #9033 - inconsistent behavior with minor-only flag

pull/9050/head
Tomek 2020-07-14 23:06:20 +01:00
parent 92ef439666
commit 23c32ed6d3
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ EOT
} else {
$latestPackage = null;
if ($input->getOption('latest')) {
$latestPackage = $this->findLatestPackage($package, $composer, $platformRepo);
$latestPackage = $this->findLatestPackage($package, $composer, $platformRepo, $input->getOption('minor-only'));
}
if ($input->getOption('outdated') && $input->getOption('strict') && $latestPackage && $latestPackage->getFullPrettyVersion() !== $package->getFullPrettyVersion() && !$latestPackage->isAbandoned()) {
$exitCode = 1;