add helper script for updating GANA submodule

This commit is contained in:
Christian Grothoff 2020-07-21 18:25:04 +02:00
parent d08ba9393e
commit d9e871b523
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

13
contrib/gana.sh Executable file
View File

@ -0,0 +1,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 ../..