Move command termination outside of output loop

main
Alexander Schwenn 7 years ago
parent e672628565
commit 52ca1bd9c5

@ -270,6 +270,7 @@ EOT
$showMinorOnly = $input->getOption('minor-only');
$indent = $showAllTypes ? ' ' : '';
$latestPackages = array();
$exitCode = 0;
foreach (array('platform' => true, 'available' => false, 'installed' => true) as $type => $showVersion) {
if (isset($packages[$type])) {
ksort($packages[$type]);
@ -394,10 +395,13 @@ EOT
$io->write('');
}
if ($input->getOption('strict') && $hasOutdatedPackages) {
return 1;
$exitCode = 1;
break;
}
}
}
return $exitCode;
}
protected function getRootRequires()

Loading…
Cancel
Save