]> git.immae.eu Git - github/wallabag/wallabag.git/blame - scripts/update.sh
Merge pull request #2372 from pmartin/api-get-entry-as-epub
[github/wallabag/wallabag.git] / scripts / update.sh
CommitLineData
4e7863c6 1#! /usr/bin/env bash
7c122534
NL
2# You can execute this file to update wallabag
3# eg: `sh update.sh prod`
4e7863c6
NL
4
5ENV=$1
6TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
7
8rm -rf var/cache/*
9git fetch origin
10git fetch --tags
84e3c36e 11git checkout $TAG --force
4e7863c6
NL
12SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
13php bin/console cache:clear --env=$ENV