Make bibtex optional too
This commit is contained in:
parent
4d3ea4beba
commit
d57e35b1a9
1 changed files with 2 additions and 1 deletions
3
build
3
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";
|
||||
|
|
Loading…
Reference in a new issue