summaryrefslogtreecommitdiff
path: root/taler-build/update_merchant_frontends.sh
blob: 417b78843ce18b11330d982f067955aca2aadbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

set -eu

cd $HOME/merchant-frontends/
git clean -fxd

# like "git pull", but robust against force pushes
# and local changes
git fetch
git reset --hard FETCH_HEAD

git submodule update --init --force

./bootstrap
./configure --prefix="$HOME/local"
make
make install