|
@@ -45,10 +45,8 @@ class ZipDownloader extends ArchiveDownloader
|
|
}
|
|
}
|
|
|
|
|
|
$processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
|
|
$processError = 'Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput();
|
|
- }
|
|
|
|
- catch(\Exception $e)
|
|
|
|
- {
|
|
|
|
- $processError = $e->getMessage();
|
|
|
|
|
|
+ } catch(\Exception $e) {
|
|
|
|
+ $processError = 'Failed to execute ' . $command . "\n\n" . $e->getMessage();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|