From e15b45ffa71e020e8a145fcdcbb7498aa013f811 Mon Sep 17 00:00:00 2001 From: adin Date: Fri, 24 Aug 2018 15:12:15 -0300 Subject: [PATCH] Add failsafe on first run of pdflatex to avoid early dying on errors --- example/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Makefile b/example/Makefile index f0d92e3..4470ff1 100644 --- a/example/Makefile +++ b/example/Makefile @@ -29,7 +29,7 @@ $(PATTERNS): clean $(eval STYLE = $(firstword $(subst -, ,$@))) $(eval LANG = $(lastword $(subst -, ,$@))) $(eval INPUT="\def\defaultstyle{$(STYLE)}\def\defaultdetails{$(DETAILS)}\def\defaultopts{\selectshortlanguage{$(LANG)}}\input{$(SOURCE)}") - pdflatex -interaction=nonstopmode $(INPUT) -jobname=$(NAME) + pdflatex -interaction=nonstopmode $(INPUT) -jobname=$(NAME) || true biber $(NAME) pdflatex -interaction=nonstopmode $(INPUT) -jobname=$(NAME) pdflatex -interaction=nonstopmode $(INPUT) -jobname=$(NAME) -- 2.50.1