summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 19c0e230c5cba1180b69577b20604a4e9cd5c473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

set -eu

base=${TALER_DEPLOYMENT_BASE:-$HOME}

mkdir -p base

cd $base

if ! test -d $base/gnunet; then
  svn checkout https://gnunet.org/svn/gnunet 
fi

if ! test -d $base/libmicrohttpd; then
  svn checkout https://gnunet.org/svn/libmicrohttpd 
fi

for component in merchant gnurl landing exchange merchant-frontends deployment; do
  if ! test -d $base/$component; then
    git clone /var/git/$component.git
  fi
done