From 215f9c135325307a2d81539f7f9a8747794fe772 Mon Sep 17 00:00:00 2001 From: Polonkai Gergely Date: Thu, 16 Aug 2012 19:38:47 +0200 Subject: [PATCH] Created update.sh for fast prod update Signed-off-by: Gergely Polonkai --- update.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 update.sh diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..5deee70 --- /dev/null +++ b/update.sh @@ -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 +