diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-09 21:50:15 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-09 21:50:15 +0200 |
commit | 4e7863c6aa0010c22e471a84859217e1ca8227b8 (patch) | |
tree | 44b864002cc5240adce343e6dee22fbffb7a672e /scripts/update.sh | |
parent | 26490a8794e762a77bb0439790db641a222fb0ef (diff) | |
download | wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.gz wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.zst wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.zip |
Created scripts folder to store update/install/release process
Diffstat (limited to 'scripts/update.sh')
-rw-r--r-- | scripts/update.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/update.sh b/scripts/update.sh new file mode 100644 index 00000000..167e84e1 --- /dev/null +++ b/scripts/update.sh | |||
@@ -0,0 +1,11 @@ | |||
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 | ||