aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update.sh
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-10-10 16:58:15 +0200
committerGitHub <noreply@github.com>2016-10-10 16:58:15 +0200
commitbccf7a70bc22171904a5bb82d282e9c956684abc (patch)
treef03a771ac950296aa1a91af363784ec7915eac27 /scripts/update.sh
parentc99d90455bf2c3bac8a85cc0fdaf60134ae06cb4 (diff)
parentfa4c39b37c1e1a1b52739a070775e9ba0fafe802 (diff)
downloadwallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.tar.gz
wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.tar.zst
wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.zip
Merge pull request #2403 from wallabag/cleanup-install-process-in-doc
Cleaned up documentation for installation process
Diffstat (limited to 'scripts/update.sh')
-rw-r--r--scripts/update.sh13
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
5ENV=$1
6TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
7
8rm -rf var/cache/*
9git fetch origin
10git fetch --tags
11git checkout $TAG --force
12SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
13php bin/console cache:clear --env=$ENV