Skip to content

Commit

Permalink
Put version into quotes, otherwise it fails
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dannykopping committed Aug 5, 2014
1 parent 30bb6c5 commit 6dc62a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quick_tour/the_big_picture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ directory:

.. code-block:: bash
$ composer create-project symfony/framework-standard-edition myproject/ ~2.5
$ composer create-project symfony/framework-standard-edition myproject/ '~2.5'
.. note::

Expand Down

0 comments on commit 6dc62a8

Please sign in to comment.