commit 2916a9f683f4a7f9f4596f6c912e91705ab0ab64
parent 92a9466dc83dc9a730bf9be7bdcb2b713c69987e
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 19 May 2019 01:58:14 +0200
fix script, do not rely on the repos being local
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bootstrap-standalone b/bootstrap-standalone
@@ -16,16 +16,16 @@ PGBINDIR=$(pg_config --bindir)
cd $HOME
if ! test -d $HOME/gnunet; then
- git clone git://gnunet.org/gnunet.git
+ git clone git://git.gnunet.org/gnunet.git
fi
if ! test -d $HOME/libmicrohttpd; then
- git clone git://gnunet.org/libmicrohttpd.git
+ git clone git://git.gnunet.org/libmicrohttpd.git
fi
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
+ git clone git://git.taler.net/$component.git
fi
done