bootstrap (476B)
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 6 set -eu 7 8 if ! git --version >/dev/null; then 9 echo "git not installed" 10 exit 1 11 fi 12 13 git submodule update --init 14 git submodule update --recursive --remote 15 git submodule sync 16 17 cp build-system/taler-build-scripts/configure ./configure || true 18 cp build-system/taler-build-scripts/conf/.style.yapf .style.yapf || true