]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - scripts/update.sh
Return a different code when git isn't installed
[github/wallabag/wallabag.git] / scripts / update.sh
... / ...
CommitLineData
1#!/usr/bin/env bash
2# You can execute this file to update wallabag
3# eg: `sh update.sh prod`
4
5IGNORE_ROOT_ARG="--ignore-root-warning"
6IGNORE_ROOT=0
7
8while :; do
9 case $1 in
10 $IGNORE_ROOT_ARG) IGNORE_ROOT=1
11 ;;
12 *[a-zA-Z]) ENV=$1
13 ;;
14 *) break
15 ;;
16 esac
17 shift
18done
19
20# Abort running this script if root
21if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then
22 echo "Do not run this script as root!" >&2
23 echo "Use $IGNORE_ROOT_ARG to ignore this error." >&2
24 exit 1
25fi
26
27set -e
28set -u
29
30COMPOSER_COMMAND='composer'
31REQUIRE_FILE='scripts/require.sh'
32
33if [ ! -f "$REQUIRE_FILE" ]; then
34 echo "Cannot find $REQUIRE_FILE"
35 exit 1
36fi
37
38. "$REQUIRE_FILE"
39
40# Check for wallabag .git folder
41if [ ! -d .git ]; then
42 echo "Can not update because wallabag wasn't installed using git (see https://doc.wallabag.org/en/admin/upgrade.html#upgrade-on-a-shared-hosting). Aborting.";
43 exit 2;
44fi
45
46rm -rf var/cache/*
47git fetch origin
48git fetch --tags
49TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
50git checkout $TAG --force
51SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
52php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV
53php bin/console cache:clear --env=$ENV