mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-27 17:28:39 +00:00
Merge pull request #2555 from dkrmr/fix_update_script
Reorder variable assignation in update.sh script, fix #2554
This commit is contained in:
commit
40f3ab5311
1 changed files with 1 additions and 1 deletions
|
@ -9,11 +9,11 @@ if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
|
||||||
. "$DIR/require.sh"
|
. "$DIR/require.sh"
|
||||||
|
|
||||||
ENV=$1
|
ENV=$1
|
||||||
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|
||||||
|
|
||||||
rm -rf var/cache/*
|
rm -rf var/cache/*
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
|
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||||
git checkout $TAG --force
|
git checkout $TAG --force
|
||||||
SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
|
SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
|
||||||
php bin/console cache:clear --env=$ENV
|
php bin/console cache:clear --env=$ENV
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue