]> git.immae.eu Git - github/wallabag/wallabag.git/blob - scripts/update.sh
Created scripts folder to store update/install/release process
[github/wallabag/wallabag.git] / scripts / update.sh
1 #! /usr/bin/env bash
2
3 ENV=$1
4 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
5
6 rm -rf var/cache/*
7 git fetch origin
8 git fetch --tags
9 git checkout $TAG
10 SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
11 php bin/console cache:clear --env=$ENV