]> git.immae.eu Git - github/wallabag/wallabag.git/blob - scripts/update.sh
c62d104a3353a2e1443cc31a33d4d3270f74e2cc
[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 IGNORE_ROOT_ARG="--ignore-root-warning"
6 IGNORE_ROOT=0
7
8 if [ "$1" == "$IGNORE_ROOT_ARG" ]; then
9 IGNORE_ROOT=1
10 fi
11
12 # Abort running this script if root
13 if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then
14 echo "Do not run this script as root!" >&2
15 echo "Use $IGNORE_ROOT_ARG to ignore this error." >&2
16 exit 1
17 fi
18
19 set -e
20 set -u
21
22 COMPOSER_COMMAND='composer'
23
24 DIR="${BASH_SOURCE}"
25 if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
26 . "$DIR/require.sh"
27
28 ENV=$1
29
30 rm -rf var/cache/*
31 git fetch origin
32 git fetch --tags
33 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
34 git checkout $TAG --force
35 SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
36 php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV
37 php bin/console cache:clear --env=$ENV