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

set -eu

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

git fetch
# reset to updated upstream branch, but only if we're tracking a branch
branch=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo HEAD)
git reset --hard "$branch"

git submodule update --init --force

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