]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - scripts/update.sh
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[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
8if [ "$1" == "$IGNORE_ROOT_ARG" ]; then
9 IGNORE_ROOT=1
10fi
11
12# Abort running this script if root
13if [ "$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
17fi
18
19set -e
20set -u
21
22COMPOSER_COMMAND='composer'
23
24DIR="${BASH_SOURCE}"
25if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
26. "$DIR/require.sh"
27
28ENV=$1
29
30rm -rf var/cache/*
31git fetch origin
32git fetch --tags
33TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
34git checkout $TAG --force
35SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
36php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV
37php bin/console cache:clear --env=$ENV