]> git.immae.eu Git - github/wallabag/wallabag.git/blob - scripts/update.sh
Abort running install and update script if root (closes #3590)
[github/wallabag/wallabag.git] / scripts / update.sh
1 #!/usr/bin/env bash
2 # You can execute this file to update wallabag
3 # eg: `sh update.sh prod`
4
5 # Abort running this script if root
6 if [ "$EUID" == "0" ]; then
7 echo "Do not run this script as root!" >&2
8 exit 1
9 fi
10
11 set -e
12 set -u
13
14 COMPOSER_COMMAND='composer'
15
16 DIR="${BASH_SOURCE}"
17 if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
18 . "$DIR/require.sh"
19
20 ENV=$1
21
22 rm -rf var/cache/*
23 git fetch origin
24 git fetch --tags
25 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
26 git checkout $TAG --force
27 SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
28 php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV
29 php bin/console cache:clear --env=$ENV