Improve unzip failure message

main
Jordi Boggiano 12 years ago
parent ecf6afdbb3
commit 98380f3aad

@ -42,7 +42,8 @@ class ZipDownloader extends ArchiveDownloader
return; return;
} }
$error = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput(); $error = "Could not decompress the archive, enable the PHP zip extension or install unzip.\n".
'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
} }
throw new \RuntimeException($error); throw new \RuntimeException($error);

Loading…
Cancel
Save