exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit d9e871b5238f43392053e687e28381e2caaed163
parent d08ba9393ebb4d51b23611466daa1b7546b17257
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 21 Jul 2020 18:25:04 +0200

add helper script for updating GANA submodule

Diffstat:
Acontrib/gana.sh | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/contrib/gana.sh b/contrib/gana.sh @@ -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 ../..