From d57e35b1a9f0c78b468cf7cc4abfffcb9bded8ac Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 16 Jul 2019 16:14:32 +0100 Subject: [PATCH] Make bibtex optional too --- build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build b/build index 77a3318..95cb3f3 100755 --- a/build +++ b/build @@ -71,7 +71,8 @@ task_setup() { check_command awk true; check_command pdflatex true optional; if [[ "$?" -ne "0" ]]; then echo "${HC}pdflatex${RS} is required to render the reports."; fi - check_command bibtex true; + check_command bibtex true optional; + if [[ "$?" -ne "0" ]]; then echo "${HC}bibtex${RS} is required to render the reports."; fi task_end $?; task_begin "Initialising submodules";