From 2f6eef906a3dc95e548ae6f316fafe52580e964c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyula=20Szab=C3=B3?= Date: Mon, 27 Apr 2015 11:16:46 +0200 Subject: [PATCH] Update symfony.rb The getcomposer installer url changed --- lib/symfony2/symfony.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/symfony2/symfony.rb b/lib/symfony2/symfony.rb index fd90854..b9e86c8 100644 --- a/lib/symfony2/symfony.rb +++ b/lib/symfony2/symfony.rb @@ -147,12 +147,12 @@ # Because we always install to temp location we assume that we download composer every time. logger.debug "Downloading composer to #{$temp_destination}" capifony_pretty_print "--> Downloading Composer to temp location" - run_locally "cd #{$temp_destination} && curl -s http://getcomposer.org/installer | #{php_bin}#{install_options}" + run_locally "cd #{$temp_destination} && curl -sS https://getcomposer.org/installer | #{php_bin}#{install_options}" else if !remote_file_exists?("#{latest_release}/composer.phar") capifony_pretty_print "--> Downloading Composer" - run "#{try_sudo} sh -c 'cd #{latest_release} && curl -s http://getcomposer.org/installer | #{php_bin}#{install_options}'" + run "#{try_sudo} sh -c 'cd #{latest_release} && curl -sS https://getcomposer.org/installer | #{php_bin}#{install_options}'" else capifony_pretty_print "--> Updating Composer"