From 4e7863c6aa0010c22e471a84859217e1ca8227b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 9 Oct 2016 21:50:15 +0200 Subject: Created scripts folder to store update/install/release process --- scripts/update.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/update.sh (limited to 'scripts/update.sh') 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 @@ +#! /usr/bin/env bash + +ENV=$1 +TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) + +rm -rf var/cache/* +git fetch origin +git fetch --tags +git checkout $TAG +SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist +php bin/console cache:clear --env=$ENV -- cgit v1.2.3 From 84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 10 Oct 2016 09:15:53 +0200 Subject: Added documentation about testsuite Fix #2415 --- scripts/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/update.sh') diff --git a/scripts/update.sh b/scripts/update.sh index 167e84e1..48281210 100644 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -6,6 +6,6 @@ TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) rm -rf var/cache/* git fetch origin git fetch --tags -git checkout $TAG +git checkout $TAG --force SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist php bin/console cache:clear --env=$ENV -- cgit v1.2.3 From 7c1225347db8b516cc268709939f6b359bc283c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 10 Oct 2016 10:20:32 +0200 Subject: Update documentation --- scripts/update.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/update.sh') diff --git a/scripts/update.sh b/scripts/update.sh index 48281210..b920a829 100644 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -1,4 +1,6 @@ #! /usr/bin/env bash +# You can execute this file to update wallabag +# eg: `sh update.sh prod` ENV=$1 TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) -- cgit v1.2.3