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

Commit c038676

Browse files
committed
bug #193 Fixed the way to retrieve the latest installer version (javiereguiluz)
This PR was merged into the 1.0-dev branch. Discussion ---------- Fixed the way to retrieve the latest installer version This is the first step into fixing the issues with self-updating the installer. Commits ------- 747d2b6 Fixed the way to retrieve the latest installer version
2 parents 09a5376 + 747d2b6 commit c038676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Installer/SelfUpdateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private function installerIsUpdated()
122122
$isUpdated = false;
123123
$localVersion = $this->getApplication()->getVersion();
124124

125-
if (false === $remoteVersion = @file_get_contents('http://get.sensiolabs.org/symfony.version')) {
125+
if (false === $remoteVersion = @file_get_contents('http://get.symfony.com/symfony.version')) {
126126
throw new \RuntimeException('The new version of the Symfony Installer couldn\'t be downloaded from the server.');
127127
}
128128

0 commit comments

Comments
 (0)