commit 75f40de3f942f26ff04f8cbb324ce3d33d450793 parent dcf4b45c528e1047f0fd1867f599f0ff053b5539 Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Wed, 5 Dec 2018 19:20:08 +0100 Fix variable name. Diffstat:
| M | buildbot/make_auditor_reports.sh | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh @@ -53,9 +53,9 @@ pdflatex \ --output-directory $REPORTS_DIRECTORY \ "${REPORT_FILE}.tex" -rm - "${REPORT_FILE}.log" - "${REPORT_FILE}.tex" - "${REPORT_FILE}.txt" +rm \ + "${REPORT_FILE_NOEXT}.log" \ + "${REPORT_FILE_NOEXT}.tex" \ + "${REPORT_FILE_NOEXT}.txt" -echo "The file ${REPORT_FILE}.pdf" has been correctly generated. +echo "The file ${REPORT_FILE_NOEXT}.pdf" has been correctly generated.