You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
305 B
Bash
12 lines
305 B
Bash
#! /bin/sh
|
|
|
|
git pull && \
|
|
git submodule init && \
|
|
git submodule update && \
|
|
(app/console cache:clear --env=prod || rm -rf `dirname $0`/app/cache/prod) && \
|
|
(app/console cache:clear || rm -rf `dirname $0`/app/cache/dev) && \
|
|
app/console assets:install && \
|
|
app/console assetic:dump --env=prod && \
|
|
exit 0
|
|
|