diff --git a/src/Composer/Command/StatusCommand.php b/src/Composer/Command/StatusCommand.php index a125bdd3c..65662c048 100644 --- a/src/Composer/Command/StatusCommand.php +++ b/src/Composer/Command/StatusCommand.php @@ -84,7 +84,7 @@ EOT foreach ($errors as $path => $changes) { if ($input->getOption('verbose')) { $indentedChanges = implode("\n", array_map(function ($line) { - return ' ' . $line; + return ' ' . ltrim($line); }, explode("\n", $changes))); $output->writeln(''.$path.':'); $output->writeln($indentedChanges);