Created update.sh for fast prod update

Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely 2012-08-16 19:38:47 +02:00
parent 44539862a2
commit 215f9c1353
1 changed files with 9 additions and 0 deletions

9
update.sh Executable file
View File

@ -0,0 +1,9 @@
#! /bin/sh
git pull && \
app/console assets:install && \
app/console assetic:dump --env=prod && \
app/console cache:clear --env=prod && app/console cache:clear
exit 0