Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
dannykopping committed Aug 5, 2014
commit 6dc62a80e02a45d125d91b32af00ced420588b17
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