We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6908e07 commit b4c5f0aCopy full SHA for b4c5f0a
.platform.app.yaml
@@ -58,6 +58,11 @@ mounts:
58
# The hooks that will be performed when the package is deployed.
59
hooks:
60
build: |
61
+ if [ "$PLATFORM_BRANCH" = master ]; then
62
+ rm web/app_dev.php
63
+ else
64
+ echo "only remove app_dev.php on master"
65
+ fi
66
rm web/app_dev.php
67
# place sqlite file into /tmp so that we can write to it during deploy
68
sed -i 's@%kernel.root_dir%/../var/app.sqlite@/tmp/app.sqlite@' app/config/parameters.yml
0 commit comments