Skip to content

Commit 03669dc

Browse files
committed
minor #16893 Adding single quotes around version param (ThePeterMick)
This PR was submitted for the 6.1 branch but it was merged into the 6.0 branch instead. Discussion ---------- Adding single quotes around version param Adding single quotes around version param as otherwise getting this in zsh on MBP: peter@Peters-MacBook-Pro-3 Projects % symfony new my_project_directory --version=6.0.* --webapp zsh: no matches found: --version=6.0.* <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `6.x` for features of unreleased versions). --> Commits ------- 44bc6c3 Adding single quotes around version param
2 parents 9adceab + 44bc6c3 commit 03669dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ application:
4949
.. code-block:: terminal
5050
5151
# run this if you are building a traditional web application
52-
$ symfony new my_project_directory --version=6.0.* --webapp
52+
$ symfony new my_project_directory --version='6.0.*' --webapp
5353
5454
# run this if you are building a microservice, console application or API
55-
$ symfony new my_project_directory --version=6.0.*
55+
$ symfony new my_project_directory --version='6.0.*'
5656
5757
The only difference between these two commands is the number of packages
5858
installed by default. The ``--webapp`` option installs all the packages that you
@@ -273,7 +273,7 @@ stable version. If you want to use an LTS version, add the ``--version`` option:
273273
$ symfony new my_project_directory --version=next
274274
275275
# you can also select an exact specific Symfony version
276-
$ symfony new my_project_directory --version=5.4.*
276+
$ symfony new my_project_directory --version='5.4.*'
277277
278278
The ``lts`` and ``next`` shortcuts are only available when using Symfony to
279279
create new projects. If you use Composer, you need to tell the exact version:

0 commit comments

Comments
 (0)