wallet-core/bootstrap

15 lines
333 B
Plaintext
Raw Normal View History

2019-10-12 00:28:33 +02:00
#!/bin/sh
2019-10-14 19:09:12 +02:00
# 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