summaryrefslogtreecommitdiff
path: root/buildbot/make_auditor_reports.sh
diff options
context:
space:
mode:
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