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