[latex3-commits] [git/LaTeX3-latex3-latex2e] develop: Mumble (2cd917cf)
Joseph Wright
joseph.wright at morningstar2.co.uk
Wed Nov 6 20:56:07 CET 2019
Repository : https://github.com/latex3/latex2e
On branch : develop
Link : https://github.com/latex3/latex2e/commit/2cd917cf38d178edfcb5766bae4cd6bd9c45510f
>---------------------------------------------------------------
commit 2cd917cf38d178edfcb5766bae4cd6bd9c45510f
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Wed Nov 6 19:56:07 2019 +0000
Mumble
>---------------------------------------------------------------
2cd917cf38d178edfcb5766bae4cd6bd9c45510f
build-config.lua | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/build-config.lua b/build-config.lua
index 20f212da..b6e63a38 100644
--- a/build-config.lua
+++ b/build-config.lua
@@ -47,7 +47,7 @@ function tex(file,dir,mode)
local dir = dir or "."
local mode = mode or "nonstopmode"
return runcmd(
- 'pdftex -fmt=pdflatex -interaction=" .. mode .. " -jobname="' ..
+ 'pdftex -fmt=pdflatex -interaction=' .. mode .. ' -jobname="' ..
string.match(file,"^[^.]*") .. '" "\\input ' .. file .. '"',
dir,{"TEXINPUTS","TEXFORMATS","LUAINPUTS"})
end
@@ -244,7 +244,7 @@ function typeset(file,dir)
makeindex(name,dir,".glo",".gls",".glg",glossarystyle) +
makeindex(name,dir,".idx",".ind",".ilg",indexstyle) +
tex(file,dir,"batchmode")
- if errorlevel ~= 0 then break end
+ if errorlevel ~= 0 then return errorlevel end
end
- return errorlevel
+ return tex(file,dir)
end
\ No newline at end of file
More information about the latex3-commits
mailing list