summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuildbot/make_auditor_reports.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh
index bc11ea5..5bacb68 100755
--- a/buildbot/make_auditor_reports.sh
+++ b/buildbot/make_auditor_reports.sh
@@ -34,9 +34,12 @@ python ${PWD}/render_auditor_reports.py \
> "${REPORT_FILE_NOEXT}.tex" \
< "${JINJA_TEMPLATE}"
-# POLISHING ENDS HERE.
-
cd "${REPORTS_DIRECTORY}"
pdflatex "${REPORT_FILE_NOEXT}.tex"
+# Remove garbage and set permissions.
+rm "${REPORT_FILE_NOEXT}.aux"
+rm "${REPORT_FILE_NOEXT}.log"
+chmod g+r "${REPORT_FILE_NOEXT}.pdf"
+
echo "The file ${REPORT_FILE_NOEXT}.pdf" has been correctly generated.