1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#!/bin/bash base=${TALER_DEPLOYMENT_BASE:-$HOME} export PATH="$base/deployment":$PATH cd $base/bank/ && \ git pull && \ git submodule update --init && \ git clean -fxd && \ ./bootstrap && \ ./configure --prefix="$base/local" && \ make && \ make install && \ cd $base/deployment