summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-03-09 09:24:34 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-03-09 09:24:34 +0100
commit6253688198815dcb5f9327e4b8f251cfbff9108c (patch)
treed02091e6eb62c3a52248893431655aea21c26915
parentf44a398618e3e668b357a8c2b58b3f750a074e34 (diff)
downloaddeployment-6253688198815dcb5f9327e4b8f251cfbff9108c.tar.gz
deployment-6253688198815dcb5f9327e4b8f251cfbff9108c.tar.bz2
deployment-6253688198815dcb5f9327e4b8f251cfbff9108c.zip
include twister into bootstrap-* scripts.
-rwxr-xr-xbootstrap-bluegreen6
-rwxr-xr-xbootstrap-standalone4
2 files changed, 5 insertions, 5 deletions
diff --git a/bootstrap-bluegreen b/bootstrap-bluegreen
index fa40bac..2b49bbc 100755
--- a/bootstrap-bluegreen
+++ b/bootstrap-bluegreen
@@ -34,9 +34,9 @@ fi
ENVNAME=$1
ENVCOLOR=$2
-
BRANCH=master
CURRENCY=TESTKUDOS
+
case $ENVNAME in
demo)
BRANCH=stable
@@ -54,7 +54,7 @@ if ! test -d $HOME/libmicrohttpd; then
git clone git://gnunet.org/libmicrohttpd.git
fi
-for component in bank merchant gnurl landing exchange donations blog backoffice deployment auditor survey ; do
+for component in twister bank merchant gnurl landing exchange donations blog backoffice deployment auditor survey ; do
if ! test -d $HOME/$component; then
git clone /var/git/$component.git
fi
@@ -66,7 +66,7 @@ if [[ "$ENVNAME" = test ]]; then
fi
fi
-for component in bank merchant landing exchange donations blog survey backoffice ; do
+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
done
diff --git a/bootstrap-standalone b/bootstrap-standalone
index 8e69a42..d2c0320 100755
--- a/bootstrap-standalone
+++ b/bootstrap-standalone
@@ -23,13 +23,13 @@ if ! test -d $HOME/libmicrohttpd; then
git clone git://gnunet.org/libmicrohttpd.git
fi
-for component in bank merchant gnurl landing exchange donations blog deployment survey auditor backoffice ; do
+for component in twister bank merchant gnurl landing exchange donations blog deployment survey auditor backoffice ; do
if ! test -d $HOME/$component; then
git clone /var/git/$component.git
fi
done
-for component in bank merchant landing exchange donations blog survey auditor backoffice ; do
+for component in twister bank merchant landing exchange donations blog survey auditor backoffice ; do
echo "Checking out $component to $BRANCH"
git -C $HOME/$component checkout $BRANCH
done