summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 4bbc3db4e01399edf4766d4f59337246784b8c14 (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 bank merchant gnurl landing exchange merchant-frontends deployment; do
  if ! test -d $base/$component; then
    git clone /var/git/$component.git
  fi
done