aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update.sh')
-rw-r--r--scripts/update.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/update.sh b/scripts/update.sh
new file mode 100644
index 00000000..167e84e1
--- /dev/null
+++ b/scripts/update.sh
@@ -0,0 +1,11 @@
1#! /usr/bin/env bash
2
3ENV=$1
4TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
5
6rm -rf var/cache/*
7git fetch origin
8git fetch --tags
9git checkout $TAG
10SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
11php bin/console cache:clear --env=$ENV