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"