taler-deployment

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

commit afb48481d7d9ce5faf4ee6f9577fce38593685bf
parent 97b87323bf7ebba3af359fbacdfc202e84dbe5e1
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed, 29 May 2019 20:35:16 +0200

Oops.

Wire reports are melted with the other report.

Diffstat:
Mbuildbot/make_auditor_reports.sh | 18------------------
1 file changed, 0 insertions(+), 18 deletions(-)

diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh @@ -36,27 +36,16 @@ cd ${HOME} pdflatex "${REPORT_FILE_NOEXT}.tex" # Give twice to let TeX resolve the sections references. pdflatex "${REPORT_FILE_NOEXT}.tex" -pdflatex "${WIRE_REPORT_FILE_NOEXT}.tex" -# Give twice to let TeX resolve the sections references. -pdflatex "${WIRE_REPORT_FILE_NOEXT}.tex" - # Remove garbage and set permissions. echo Removing "${REPORT_FILE_NOEXT}.aux" -echo Removing "${WIRE_REPORT_FILE_NOEXT}.aux" rm "${REPORT_FILE_NOEXT}.aux" -rm "${WIRE_REPORT_FILE_NOEXT}.aux" echo Removing "${REPORT_FILE_NOEXT}.tex" -echo Removing "${WIRE_REPORT_FILE_NOEXT}.aux" rm "${REPORT_FILE_NOEXT}.tex" -rm "${WIRE_REPORT_FILE_NOEXT}.aux" echo Removing "${REPORT_FILE_NOEXT}.log" -echo Removing "${WIRE_REPORT_FILE_NOEXT}.aux" rm "${REPORT_FILE_NOEXT}.log" -rm "${WIRE_REPORT_FILE_NOEXT}.aux" chmod g+r "${REPORT_FILE_NOEXT}.pdf" -chmod g+r "${WIRE_REPORT_FILE_NOEXT}.pdf" if test -a ${REPORTS_DIRECTORY}/$(basename "${REPORT_FILE_NOEXT}.pdf"); then echo "Today's report already compiled." @@ -64,13 +53,6 @@ if test -a ${REPORTS_DIRECTORY}/$(basename "${REPORT_FILE_NOEXT}.pdf"); then exit 0 fi -if test -a ${REPORTS_DIRECTORY}/$(basename "${WIRE_REPORT_FILE_NOEXT}.pdf"); then - echo "Today's wire report already compiled." - rm "${WIRE_REPORT_FILE_NOEXT}.pdf" - exit 0 -fi - mv "${REPORT_FILE_NOEXT}.pdf" "${REPORTS_DIRECTORY}" -mv "${WIRE_REPORT_FILE_NOEXT}.pdf" "${REPORTS_DIRECTORY}" echo Reports moved in "${REPORTS_DIRECTORY}".