From db2fa18bf532cff3dfd59f7b24f309afbc63e121 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 19 Nov 2014 16:16:59 +0100 Subject: [PATCH 1/2] Updated the Symfony Installer installation instructions --- quick_tour/the_big_picture.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index be24e7ecfaf..a3b857d9830 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -31,7 +31,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands: .. code-block:: bash - $ curl -sS https://symfony.com/installer | php + $ curl -LsS http://symfony.com/installer > symfony.phar $ sudo mv symfony.phar /usr/local/bin/symfony .. note:: @@ -41,7 +41,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands: .. code-block:: bash - $ php -r "readfile('https://symfony.com/installer');" | php + $ php -r "readfile('http://symfony.com/installer');" > symfony.phar $ sudo mv symfony.phar /usr/local/bin/symfony After installing the Symfony installer, you'll have to open a new console window @@ -55,7 +55,7 @@ On **Windows** systems, execute the following console command: .. code-block:: bash - c:\> php -r "readfile('https://symfony.com/installer');" | php + c:\> php -r "readfile('http://symfony.com/installer');" > symfony.phar This command downloads a file called ``symfony.phar`` which contains the Symfony installer. Save or move that file to the directory where you create the Symfony From f44079f15dfc306b9e22eba7c5316e2eabefb89d Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 19 Nov 2014 16:21:44 +0100 Subject: [PATCH 2/2] Fixed Windows code sample indentation --- quick_tour/the_big_picture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index a3b857d9830..bf10f772f1a 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -53,7 +53,7 @@ to be able to execute the new ``symfony`` command: On **Windows** systems, execute the following console command: - .. code-block:: bash +.. code-block:: bash c:\> php -r "readfile('http://symfony.com/installer');" > symfony.phar