Skip to content

Commit 3dbd15a

Browse files
committed
minor #11141 added missing php before bin/console (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- added missing php before bin/console to be consistent throughout the docs <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap 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 `master` for features of unreleased versions). --> Commits ------- a8afae4 added missing php before bin/console
2 parents 858b1a7 + a8afae4 commit 3dbd15a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deployment/platformsh.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ Platform.sh how to deploy your application (read more about
6969
hooks:
7070
build: |
7171
rm web/app_dev.php
72-
bin/console --env=prod assetic:dump --no-debug
72+
php bin/console --env=prod assetic:dump --no-debug
7373
deploy: |
74-
bin/console --env=prod cache:clear
74+
php bin/console --env=prod cache:clear
7575
7676
For best practices, you should also add a ``.platform`` folder at the root of
7777
your Git repository which contains the following files:

0 commit comments

Comments
 (0)