commit 18fec64d23801328a50c01c528100d2377b79daf parent 3e9205074f9e683f50d3c8e7204cb582fa33791c Author: Florian Dold <florian.dold@gmail.com> Date: Sat, 31 Aug 2019 14:58:31 +0200 use an explicit tag Diffstat:
| M | bootstrap-taler | | | 9 | ++++----- |
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/bootstrap-taler b/bootstrap-taler @@ -19,7 +19,7 @@ set -eu usage() { - echo "Usage: $0 ENVNAME" + echo "Usage: $0 ENVNAME TAG" } if [ -z ${1+x} ]; then @@ -28,12 +28,11 @@ if [ -z ${1+x} ]; then fi ENVNAME=$1 -BRANCH=master +TAG=$2 CURRENCY=TESTKUDOS case $ENVNAME in demo) - BRANCH=stable CURRENCY=KUDOS ;; esac @@ -62,8 +61,8 @@ if [[ "$ENVNAME" = test ]]; then fi for component in twister bank merchant landing exchange donations blog survey backoffice ; do - echo "Checking out $component to $BRANCH" - git -C $HOME/$component checkout $BRANCH + echo "Checking out $component to $TAG" + git -C $HOME/$component checkout $TAG done cat >$HOME/activate <<EOL