execute pdflatex in nonstopmode (#5305)

* Name is irritating; nonstopmode stops execution if an
   error occurs instead of asking the user for input.
This commit is contained in:
flyx
2017-01-31 10:31:48 +01:00
committed by Andreas Rumpf
parent 51c764e048
commit 6effe4553b

View File

@@ -322,11 +322,12 @@ proc buildPdfDoc(c: var TConfigData, destPath: string) =
if os.execShellCmd("pdflatex -version") != 0:
echo "pdflatex not found; no PDF documentation generated"
else:
const pdflatexcmd = "pdflatex -interaction=nonstopmode "
for d in items(c.pdf):
exec(findNim() & " rst2tex $# $#" % [c.nimArgs, d])
# call LaTeX twice to get cross references right:
exec("pdflatex " & changeFileExt(d, "tex"))
exec("pdflatex " & changeFileExt(d, "tex"))
exec(pdflatexcmd & changeFileExt(d, "tex"))
exec(pdflatexcmd & changeFileExt(d, "tex"))
# delete all the crappy temporary files:
let pdf = splitFile(d).name & ".pdf"
let dest = destPath / pdf