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

set -eu

cd $HOME/gnunet/
git clean -fdx

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

./bootstrap
./configure --prefix=$HOME/local --enable-logging=verbose --with-libgnurl=$HOME/local --with-microhttpd=$HOME/local
make
make install