1
0
Fork 0

Warn identical names w/ different capitalization for unzip

Warn about identical names with different capitalization on unzip archive
extract failure (Not a directory)

Issue #5938
pull/6458/head
AjiYakin 2017-05-30 12:38:46 +07:00
parent cb3d2e83a3
commit 03c560ce05
1 changed files with 1 additions and 0 deletions

View File

@ -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);