Always show abandoned packages in --outdated as they are outdated in a way
parent
46fa9c79b6
commit
352e467f16
|
@ -314,7 +314,7 @@ EOT
|
|||
if ($showLatest && isset($latestPackages[$package->getPrettyName()])) {
|
||||
$latestPackackage = $latestPackages[$package->getPrettyName()];
|
||||
}
|
||||
if ($input->getOption('outdated') && $latestPackackage && $latestPackackage->getFullPrettyVersion() === $package->getFullPrettyVersion()) {
|
||||
if ($input->getOption('outdated') && $latestPackackage && $latestPackackage->getFullPrettyVersion() === $package->getFullPrettyVersion() && !$latestPackackage->isAbandoned()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue