Merge pull request #2483 from JakubOnderka/patch-2
Check exception code only if class ZipArchive existspull/2488/head
commit
45c8d5c817
|
@ -69,7 +69,7 @@ abstract class ArchiveDownloader extends FileDownloader
|
|||
$this->filesystem->removeDirectory($temporaryDir);
|
||||
|
||||
// retry downloading if we have an invalid zip file
|
||||
if ($retries && $e instanceof \UnexpectedValueException && $e->getCode() === \ZipArchive::ER_NOZIP) {
|
||||
if ($retries && $e instanceof \UnexpectedValueException && class_exists('ZipArchive') && $e->getCode() === \ZipArchive::ER_NOZIP) {
|
||||
$this->io->write(' Invalid zip file, retrying...');
|
||||
usleep(500000);
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue