Add process error to the output of failed unzipping
parent
fc0da27d84
commit
d35fc31f62
|
@ -73,7 +73,7 @@ class ZipDownloader extends ArchiveDownloader
|
||||||
$zipArchive = new ZipArchive();
|
$zipArchive = new ZipArchive();
|
||||||
|
|
||||||
if (true !== ($retval = $zipArchive->open($file))) {
|
if (true !== ($retval = $zipArchive->open($file))) {
|
||||||
throw new \UnexpectedValueException($this->getErrorMessage($retval, $file), $retval);
|
throw new \UnexpectedValueException(rtrim($this->getErrorMessage($retval, $file)."\n".$processError), $retval);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (true !== $zipArchive->extractTo($path)) {
|
if (true !== $zipArchive->extractTo($path)) {
|
||||||
|
|
Loading…
Reference in New Issue