taler-deployment

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

commit e13dd2e03cf883ab5a6b27dcf2ba5db748d919d1
parent 1fe922d192668c74c5ce15a668922cce2e06c403
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 23 Feb 2020 20:31:51 +0100

log failure cause better

Diffstat:
Mbuildbot/make_auditor_reports.sh | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh @@ -43,6 +43,7 @@ CONFIG_FILE=${TALER_HOME}/.config/taler.conf # Generate first report. echo "Running taler-auditor" if ! taler-auditor -c ${CONFIG_FILE} > "${REPORT_FILE_NOEXT}.txt"; then + echo "taler-auditor failed" clean_files exit 1 fi @@ -50,7 +51,8 @@ fi # Generate "wire" report. echo "Running taler-wire-auditor" if ! taler-wire-auditor -c ${CONFIG_FILE} > "${WIRE_REPORT_FILE_NOEXT}.txt"; then - clean_files + echo "taler-wire-auditor failed" +# clean_files exit 1 fi