#!/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 sync --recursive git submodule update --init --recursive cd iono/ios-node-v8 ./taler-ios-build/x64 ./taler-ios-build/arm64 cd ../.. cd iono ./bootstrap cd ..