diff --git a/src/Composer/Downloader/ZipDownloader.php b/src/Composer/Downloader/ZipDownloader.php index 5b29b1493..5278be91b 100644 --- a/src/Composer/Downloader/ZipDownloader.php +++ b/src/Composer/Downloader/ZipDownloader.php @@ -99,7 +99,7 @@ class ZipDownloader extends ArchiveDownloader if (true !== $zipArchive->extractTo($path)) { $this->io->writeError("As there is no 'unzip' command installed zip files are being unpacked using the PHP zip extension."); - $this->io->writeError(" This may cause invalid reports of corrupted archives. Installing 'unzip' may remediate them."); + $this->io->writeError("This may cause invalid reports of corrupted archives. Installing 'unzip' may remediate them."); throw new \RuntimeException("There was an error extracting the ZIP file, it is either corrupted or using an invalid format"); }