From 36d949f1fc1769a07f84ea03fce8b03ca6af221c Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 24 Apr 2016 21:41:21 +0200 Subject: deployment base dir --- bootstrap | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 bootstrap (limited to 'bootstrap') diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..8c5a62c --- /dev/null +++ b/bootstrap @@ -0,0 +1,19 @@ +#!/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 + +for component in merchant mint landing exchange merchant-frontends deployment; do + if ! test -d $base/$component; then + git clone /var/git/$component.git + fi +done -- cgit v1.2.3