1
0
Fork 0

Avoid mixing stderr and stdout in outdated command as it mangles output

pull/6356/head
Jordi Boggiano 2017-04-13 23:13:11 +02:00
parent be201924cd
commit 83798d8090
1 changed files with 3 additions and 4 deletions

View File

@ -445,11 +445,10 @@ EOT
if (isset($package['path'])) {
$io->write(' ' . $package['path'], false);
}
if (isset($package['warning'])) {
$io->writeError('');
$io->writeError('<warning>' . $package['warning'] . '</warning>', false);
}
$io->write('');
if (isset($package['warning'])) {
$io->write('<warning>' . $package['warning'] . '</warning>');
}
}
if ($showAllTypes) {