merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit a8e41386af4bb4978d343587588f0ae1e5575142
parent 844f47bce38cabcc9d8999134c7b26467ef80b79
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 18 Apr 2016 18:02:31 +0200

Init submodules in bootstrap

Diffstat:
Mbootstrap | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/bootstrap b/bootstrap @@ -1,2 +1,12 @@ #!/bin/sh + +if ! git --version >/dev/null; then + echo "git not installed" + exit 1 +fi + +echo "$0: Updating submodules" +echo | git submodule update --init + +echo "$0: Running autoreconf" autoreconf -if