]> git.immae.eu Git - github/wallabag/wallabag.git/blob - scripts/update.sh
Merge pull request #2372 from pmartin/api-get-entry-as-epub
[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 ENV=$1
6 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
7
8 rm -rf var/cache/*
9 git fetch origin
10 git fetch --tags
11 git checkout $TAG --force
12 SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
13 php bin/console cache:clear --env=$ENV