From 4e7863c6aa0010c22e471a84859217e1ca8227b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 9 Oct 2016 21:50:15 +0200 Subject: Created scripts folder to store update/install/release process --- scripts/update.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/update.sh (limited to 'scripts/update.sh') 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 @@ +#! /usr/bin/env bash + +ENV=$1 +TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) + +rm -rf var/cache/* +git fetch origin +git fetch --tags +git checkout $TAG +SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist +php bin/console cache:clear --env=$ENV -- cgit v1.2.3