summaryrefslogtreecommitdiff
path: root/taler-build/update_landing.sh
blob: 91d86fd019296cee8d237879f7c3cc687ab8bcef (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/landing
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 --force --init
AUTOMAKE="automake --foreign" autoreconf -fiv
./configure
cd demo/
make
chmod -R g+rx *