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

Fix Symfony3 is now the latest release #206

Merged
merged 1 commit into from
Nov 30, 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
2 changes: 1 addition & 1 deletion src/Symfony/Installer/DownloadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ protected function isEmptyDirectory($dir)
*/
protected function isSymfony3()
{
return $this->version && '3' === $this->version[0];
return '3' === $this->version[0] || 'latest' === $this->version;
}

private function enableSignalHandler()
Expand Down