Skip to content

Commit 0a4a74c

Browse files
committed
without output separation
1 parent 7e74eed commit 0a4a74c

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.platform.app.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ hooks:
6363
else
6464
echo "only remove app_dev.php on master"
6565
fi
66-
rm web/app_dev.php
6766
# place sqlite file into /tmp so that we can write to it during deploy
6867
sed -i 's@%kernel.root_dir%/../var/app.sqlite@/tmp/app.sqlite@' app/config/parameters.yml
6968
bin/console --env=prod assets:install -n --no-debug

bin/reloadFixtures.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@ run () {
66
command=$2
77
echo ${comment}
88
echo "Command: "${command}
9-
${command} > output 2> error
9+
${command}
1010
OUT=$?
1111
if [ ${OUT} -eq 0 ];then
1212
echo "+++ DONE +++"
13-
cat output
1413
echo
1514
else
1615
echo "+++ Errors +++"
17-
cat output
18-
cat error
1916
exit ${OUT}
2017
fi
2118
}

0 commit comments

Comments
 (0)