taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit e1d67eee71588e875721466211829e8e2916e8a4
parent 3ed09426a426a2e088e080c8ad6a33a2771ca737
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Tue, 26 Dec 2017 18:26:47 +0100

use db string from env, when set.

Diffstat:
Mtaler-build/update_bank.sh | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/taler-build/update_bank.sh b/taler-build/update_bank.sh @@ -12,4 +12,7 @@ git reset --hard "$branch" ./bootstrap ./configure --prefix="$HOME/local" -make install check +if test -z TALER_CHECKDB; then + TALER_BANK_ALTDB=$TALER_CHECKDB make install check +else make install check +fi