summaryrefslogtreecommitdiff
path: root/contrib/gana.sh
blob: d430dec33f0a08c564ed0ba8e669f8e8a015f8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# Helper script to update to latest GANA
# Run from exchange/ main directory; make sure you have
# no uncommitted changes at the time of running the script.
set -eu
cd contrib/gana
git pull origin master
cd ../..
git commit -a -S -m "synchronize with latest GANA"
./bootstrap
cd src/include
make install
cd ../..