Skip to content

Commit 6dc62a8

Browse files
committed
Put version into quotes, otherwise it fails
When using the `zsh` shell, the command fails because of: ``` $ composer create-project symfony/framework-standard-edition myproject/ ~2.5 zsh: no such user or named directory: 2.5 ``` This problem does not occur in Bash. Quoting the version number does not effect Bash, and fixes ZSH.
1 parent 30bb6c5 commit 6dc62a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quick_tour/the_big_picture.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ directory:
1818

1919
.. code-block:: bash
2020
21-
$ composer create-project symfony/framework-standard-edition myproject/ ~2.5
21+
$ composer create-project symfony/framework-standard-edition myproject/ '~2.5'
2222
2323
.. note::
2424

0 commit comments

Comments
 (0)