summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/taler-deployment-prepare3
-rwxr-xr-xbuildbot/make_auditor_reports.sh10
2 files changed, 9 insertions, 4 deletions
diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare
index 2174de0..c3f9b00 100755
--- a/bin/taler-deployment-prepare
+++ b/bin/taler-deployment-prepare
@@ -60,6 +60,9 @@ taler-exchange-keyup -o auditor.in
taler-auditor-sign -m $EXCHANGE_MASTER_PUB -r auditor.in -o auditor.out
rm -f auditor.in auditor.out # we don't actually use the auditor's signatures in the demo!
+# Make configuration accessible to auditor
+chmod 750 $HOME/.config
+
##
## Step 3: Sign the exchange's wire information
##
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh
index 0bb01e3..4009b60 100755
--- a/buildbot/make_auditor_reports.sh
+++ b/buildbot/make_auditor_reports.sh
@@ -59,16 +59,18 @@ if ! python ${PWD}/render_auditor_reports.py \
"${REPORT_FILE_NOEXT}.txt" \
"${WIRE_REPORT_FILE_NOEXT}.txt" \
> "${REPORT_FILE_NOEXT}.tex" \
- < "${JINJA_TEMPLATE}"; then
-
- clean_files
+ < "${JINJA_TEMPLATE}";
+then
+ echo "Rendering failed"
+# clean_files
exit 1
fi
cd ${HOME}
echo "TeXing report"
if ! pdflatex "${REPORT_FILE_NOEXT}.tex" && pdflatex "${REPORT_FILE_NOEXT}.tex"; then
- clean_files
+ echo "pdflatex failed"
+# clean_files
exit 1
fi