|
@@ -44,7 +44,7 @@ class RarDownloader extends ArchiveDownloader
|
|
|
|
|
|
// Try to use unrar on *nix
|
|
|
if (!Platform::isWindows()) {
|
|
|
- $command = 'unrar x ' . ProcessExecutor::escape($file) . ' ' . ProcessExecutor::escape($path) . ' && chmod -R u+w ' . ProcessExecutor::escape($path);
|
|
|
+ $command = 'unrar x ' . ProcessExecutor::escape($file) . ' ' . ProcessExecutor::escape($path) . ' >/dev/null && chmod -R u+w ' . ProcessExecutor::escape($path);
|
|
|
|
|
|
if (0 === $this->process->execute($command, $ignoredOutput)) {
|
|
|
return;
|