taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit ef29f805e0d78f02aeb19d60ade31a3ee1ef8f82
parent 81700315466f1d77d7c4f4c9fc1fc5f8a05c03cf
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sat, 19 Nov 2016 19:24:12 +0100

only check out tag if repo new

Diffstat:
Mbootstrap-bluegreen | 15++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/bootstrap-bluegreen b/bootstrap-bluegreen @@ -40,14 +40,15 @@ esac cd $HOME -for component in gnunet libmicrohttpd; do - if ! test -d $HOME/$component; then - git clone git://gnunet.org/$component.git - fi -done +if ! test -d $HOME/gnunet; then + git clone git://gnunet.org/gnunet.git + git -C ~/gnunet checkout -q tags/taler-0.2.0 +fi -git -C ~/gnunet checkout -q tags/taler-0.2.0 -git -C ~/libmicrohttpd checkout -q tags/v0.9.52 +if ! test -d $HOME/libmicrohttpd; then + git clone git://gnunet.org/libmicrohttpd.git + git -C ~/libmicrohttpd checkout -q tags/v0.9.52 +fi for component in bank merchant gnurl landing exchange merchant-frontends deployment; do if ! test -d $HOME/$component; then