From: Darius Kramer Date: Mon, 7 Nov 2016 08:55:03 +0000 (+0100) Subject: Reorder variable assignation in update.sh script, fix #2554 X-Git-Tag: 2.1.4~16^2 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=7d173a28c784b647b4c4fb1857aa7c21da5961c3 Reorder variable assignation in update.sh script, fix #2554 --- diff --git a/scripts/update.sh b/scripts/update.sh index f43c4f24..a29e0168 100644 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -9,11 +9,11 @@ if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi . "$DIR/require.sh" ENV=$1 -TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) rm -rf var/cache/* git fetch origin git fetch --tags +TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) git checkout $TAG --force SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist php bin/console cache:clear --env=$ENV