blob: 1055d778b2c0d0d9127b0046ca683f51e0deafe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Helper script to update to latest GANA
# Run from exchange/ main directory.
set -eu
git submodule update --init
cd contrib/gana
git pull origin master
cd ../..
./contrib/gana-update.sh
|