aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-28 17:17:55 +0000
committerng0 <ng0@n0.is>2019-10-28 17:17:55 +0000
commit2f5e5544b8a3d9fceb7dee4de80eadb8e8895d2e (patch)
tree18f078f1106ad3f0ea221578ce29555888a67140 /bootstrap
parent37bb08c5baa860b3968972c6c4c1bceb9fbf1f26 (diff)
downloadwww-2f5e5544b8a3d9fceb7dee4de80eadb8e8895d2e.tar.gz
www-2f5e5544b8a3d9fceb7dee4de80eadb8e8895d2e.zip
use new build-system.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap14
1 files changed, 14 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 00000000..82700e1b
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,14 @@
1#!/bin/sh
2
3# Bootstrap the repository. Used when the repository is checked out from git.
4# When using the source tarball, running this script is not necessary.
5
6set -eu
7
8if ! git --version >/dev/null; then
9 echo "git not installed"
10 exit 1
11fi
12
13git submodule update --init
14cp build-system/taler-build-scripts/configure ./configure