Skip to content
This repository was archived by the owner on Nov 14, 2019. It is now read-only.

Add previous exception for some 'unknown errors' #131

Merged
merged 1 commit into from
Apr 1, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Symfony/Installer/DownloadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ protected function download()
"There was an error downloading %s from symfony.com server:\n%s",
$this->getDownloadedApplicationType(),
$e->getMessage()
));
), null, $e);
}
}

Expand Down Expand Up @@ -192,7 +192,7 @@ protected function extract()
"To solve this issue, check the permissions of the %s directory and\n".
"try executing this command again:\n%s",
$this->getDownloadedApplicationType(), getcwd(), $this->getExecutedCommand()
));
), null, $e);
}

if (!$extractionSucceeded) {
Expand Down