taler-deployment

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

commit b20b2f9966fe14168e71c19f9245eb7a6aa917eb
parent cbe95f914d97eace56c4ac5678bf0157a7444853
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 19 Dec 2016 15:54:33 +0100

Missing auditordb env var for database name

Diffstat:
Mtaler-build/update_exchange.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/taler-build/update_exchange.sh b/taler-build/update_exchange.sh @@ -35,10 +35,10 @@ TOP=$(pwd) lcov -d $TOP -z # the 'exit 1' seems mandatory for the next commands to work. Where is that # documented? - TALER_EXCHANGEDB_POSTGRES_CONFIG=$TALER_CHECKDB make check || exit 1 + TALER_AUDITORDB_POSTGRES_CONFIG=$TALER_CHECKDB TALER_EXCHANGEDB_POSTGRES_CONFIG=$TALER_CHECKDB make check || exit 1 lcov -d $TOP -c --no-external -o doc/coverage/coverage.info lcov -r doc/coverage/coverage.info **/test_* -o doc/coverage/rcoverage.info genhtml -o doc/coverage doc/coverage/rcoverage.info else - TALER_EXCHANGEDB_POSTGRES_CONFIG=$TALER_CHECKDB make check + TALER_AUDITORDB_POSTGRES_CONFIG=$TALER_CHECKDB TALER_EXCHANGEDB_POSTGRES_CONFIG=$TALER_CHECKDB make check fi