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

set -eu

cd $HOME/landing
git clean -fxd

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

git submodule update --force --init
AUTOMAKE="automake --foreign" autoreconf -fiv
./configure
make