From ab8503f11de99b030368d24faf7c8788de9eb84e Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 14 Oct 2019 22:03:24 +0530 Subject: build scripts as library --- bootstrap.template | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 bootstrap.template (limited to 'bootstrap.template') diff --git a/bootstrap.template b/bootstrap.template new file mode 100755 index 0000000..82700e1 --- /dev/null +++ b/bootstrap.template @@ -0,0 +1,14 @@ +#!/bin/sh + +# Bootstrap the repository. Used when the repository is checked out from git. +# When using the source tarball, running this script is not necessary. + +set -eu + +if ! git --version >/dev/null; then + echo "git not installed" + exit 1 +fi + +git submodule update --init +cp build-system/taler-build-scripts/configure ./configure -- cgit v1.2.3