From 6cf54170ccae08c0dc67f8cc6ff04036be4a17dc Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 28 Feb 2020 22:42:19 +0100 Subject: [PATCH] Avoid mixing write/writeError which causes issues on some terminals, fixes #8656 --- src/Composer/Command/ShowCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index 83f58350f..b515cc6a9 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -497,7 +497,7 @@ EOT } $io->write(''); if (isset($package['warning'])) { - $io->writeError('' . $package['warning'] . ''); + $io->write('' . $package['warning'] . ''); } }