Since there is no solution for non-unix (for now), remove the condition
parent
ba56ac362a
commit
c598fdb0f5
|
@ -36,20 +36,15 @@ class GzipDownloader extends ArchiveDownloader
|
||||||
|
|
||||||
protected function extract($file, $path)
|
protected function extract($file, $path)
|
||||||
{
|
{
|
||||||
$processError = null;
|
$targetFile = $path . '/' . basename(substr($file, 0, -3));
|
||||||
|
$command = 'gzip -cd ' . escapeshellarg($file) . ' > ' . escapeshellarg($targetFile);
|
||||||
|
|
||||||
// Try to use gunzip on *nix
|
if (0 === $this->process->execute($command, $ignoredOutput)) {
|
||||||
if (!defined('PHP_WINDOWS_VERSION_BUILD')) {
|
return;
|
||||||
$targetFile = $path . '/' . basename(substr($file, 0, -3));
|
|
||||||
$command = 'gzip -cd ' . escapeshellarg($file) . ' > ' . escapeshellarg($targetFile);
|
|
||||||
|
|
||||||
if (0 === $this->process->execute($command, $ignoredOutput)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
|
|
||||||
throw new \RuntimeException($processError);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
|
||||||
|
throw new \RuntimeException($processError);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue