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 7e74eed commit 0a4a74cCopy full SHA for 0a4a74c
.platform.app.yaml
@@ -63,7 +63,6 @@ hooks:
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
69
bin/console --env=prod assets:install -n --no-debug
bin/reloadFixtures.sh
@@ -6,16 +6,13 @@ run () {
6
command=$2
7
echo ${comment}
8
echo "Command: "${command}
9
- ${command} > output 2> error
+ ${command}
10
OUT=$?
11
if [ ${OUT} -eq 0 ];then
12
echo "+++ DONE +++"
13
- cat output
14
echo
15
16
echo "+++ Errors +++"
17
18
- cat error
19
exit ${OUT}
20
21
}
0 commit comments