9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
# Helper script to update to latest GANA
|
|
# Run from exchange/ main directory.
|
|
set -eu
|
|
|
|
cd contrib/gana
|
|
git pull origin master
|
|
cd ../..
|