Skip to content

Commit

Permalink
minor #4091 Put version into quotes, otherwise it fails in ZSH (danny…
Browse files Browse the repository at this point in the history
…kopping)

This PR was merged into the 2.5 branch.

Discussion
----------

Put version into quotes, otherwise it fails in ZSH

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`.

Commits
-------

6dc62a8 Put version into quotes, otherwise it fails
  • Loading branch information
weaverryan committed Aug 5, 2014
2 parents 30bb6c5 + 6dc62a8 commit b8687dd
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 b8687dd

Please sign in to comment.