summaryrefslogtreecommitdiff
path: root/buildbot/make_auditor_reports.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-23 20:31:51 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-23 20:32:57 +0100
commite13dd2e03cf883ab5a6b27dcf2ba5db748d919d1 (patch)
tree9fa0f0428fb23d2e4aa0eee4a1c4f07173ed1743 /buildbot/make_auditor_reports.sh
parent1fe922d192668c74c5ce15a668922cce2e06c403 (diff)
downloaddeployment-e13dd2e03cf883ab5a6b27dcf2ba5db748d919d1.tar.gz
deployment-e13dd2e03cf883ab5a6b27dcf2ba5db748d919d1.tar.bz2
deployment-e13dd2e03cf883ab5a6b27dcf2ba5db748d919d1.zip
log failure cause better
Diffstat (limited to 'buildbot/make_auditor_reports.sh')
-rwxr-xr-xbuildbot/make_auditor_reports.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh
index 4009b60..8fd2284 100755
--- 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