]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - scripts/update.sh
Abort running install and update script if root (closes #3590)
[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
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
11set -e
12set -u
13
14COMPOSER_COMMAND='composer'
15
16DIR="${BASH_SOURCE}"
17if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
18. "$DIR/require.sh"
19
20ENV=$1
21
22rm -rf var/cache/*
23git fetch origin
24git fetch --tags
25TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
26git checkout $TAG --force
27SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
28php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV
29php bin/console cache:clear --env=$ENV