diff options
author | Paulino Michelazzo <paulino@michelazzo.com.br> | 2016-10-18 22:48:23 +0200 |
---|---|---|
committer | Paulino Michelazzo <paulino@michelazzo.com.br> | 2016-10-18 22:48:23 +0200 |
commit | 99731f0bb1f6fd2815eeb9af504ce86df927657b (patch) | |
tree | b080efc608d2bbd52b77a4a0067402007f50c5a8 /scripts/update.sh | |
parent | 3a3c6b866b52721431bed22426d9abfcd0d2dfe0 (diff) | |
parent | 7180aaed45dce62e40620a9e4b202526ebd6a3bb (diff) | |
download | wallabag-99731f0bb1f6fd2815eeb9af504ce86df927657b.tar.gz wallabag-99731f0bb1f6fd2815eeb9af504ce86df927657b.tar.zst wallabag-99731f0bb1f6fd2815eeb9af504ce86df927657b.zip |
Merge remote-tracking branch 'wallabag/master'
Diffstat (limited to 'scripts/update.sh')
-rw-r--r-- | scripts/update.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/update.sh b/scripts/update.sh new file mode 100644 index 00000000..b920a829 --- /dev/null +++ b/scripts/update.sh | |||
@@ -0,0 +1,13 @@ | |||
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 | ||