summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap-bluegreen15
1 files changed, 8 insertions, 7 deletions
diff --git a/bootstrap-bluegreen b/bootstrap-bluegreen
index 91d52e9..43bb994 100755
--- 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