瀏覽代碼

Merge pull request #6458 from ajiyakin/identic-name-diff-capitalization-unzip

Warn identical names w/ different capitalization for unzip
Jordi Boggiano 7 年之前
父節點
當前提交
db7616885d
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/Composer/Downloader/ZipDownloader.php

+ 1 - 0
src/Composer/Downloader/ZipDownloader.php

@@ -113,6 +113,7 @@ class ZipDownloader extends ArchiveDownloader
         }
 
         $this->io->writeError('    '.$processError->getMessage());
+        $this->io->writeError('    The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems)');
         $this->io->writeError('    Unzip with unzip command failed, falling back to ZipArchive class');
 
         return $this->extractWithZipArchive($file, $path, true);