Avoid chmod on windows
parent
250862b325
commit
a63f8d511e
|
@ -59,7 +59,11 @@ class ZipDownloader extends ArchiveDownloader
|
||||||
$processError = null;
|
$processError = null;
|
||||||
|
|
||||||
if (self::$hasSystemUnzip) {
|
if (self::$hasSystemUnzip) {
|
||||||
$command = 'unzip '.ProcessExecutor::escape($file).' -d '.ProcessExecutor::escape($path) . ' && chmod -R u+w ' . ProcessExecutor::escape($path);
|
$command = 'unzip '.ProcessExecutor::escape($file).' -d '.ProcessExecutor::escape($path);
|
||||||
|
if (!Platform::isWindows()) {
|
||||||
|
$command .= ' && chmod -R u+w ' . ProcessExecutor::escape($path);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (0 === $this->process->execute($command, $ignoredOutput)) {
|
if (0 === $this->process->execute($command, $ignoredOutput)) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue