add initial compileGroup support

This commit is contained in:
Brian Gough
2020-06-11 16:01:44 +01:00
parent 9b92793b89
commit b33734bab6
9 changed files with 183 additions and 18 deletions

View File

@@ -36,7 +36,8 @@ module.exports = LatexRunner = {
timeout,
image,
environment,
flags
flags,
compileGroup
} = options
if (!compiler) {
compiler = 'pdflatex'
@@ -46,7 +47,15 @@ module.exports = LatexRunner = {
} // milliseconds
logger.log(
{ directory, compiler, timeout, mainFile, environment, flags },
{
directory,
compiler,
timeout,
mainFile,
environment,
flags,
compileGroup
},
'starting compile'
)
@@ -79,6 +88,7 @@ module.exports = LatexRunner = {
image,
timeout,
environment,
compileGroup,
function(error, output) {
delete ProcessTable[id]
if (error != null) {