mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #4943 from overleaf/bg-increase-max-print-line
allow setting texlive max_print_line variable GitOrigin-RevId: 7588fed6aa5868a6ed6b6121cbd6f9c008c2aa0f
This commit is contained in:
parent
9e24affe7a
commit
dc576f3b6f
2 changed files with 5 additions and 0 deletions
|
@ -131,6 +131,10 @@ function doCompile(request, callback) {
|
|||
// override default texlive openout_any environment variable
|
||||
env.openout_any = Settings.texliveOpenoutAny
|
||||
}
|
||||
if (Settings.texliveMaxPrintLine && Settings.texliveMaxPrintLine !== '') {
|
||||
// override default texlive max_print_line environment variable
|
||||
env.max_print_line = Settings.texliveMaxPrintLine
|
||||
}
|
||||
// only run chktex on LaTeX files (not knitr .Rtex files or any others)
|
||||
const isLaTeXFile =
|
||||
request.rootResourcePath != null
|
||||
|
|
|
@ -66,6 +66,7 @@ module.exports = {
|
|||
filestoreDomainOveride: process.env.FILESTORE_DOMAIN_OVERRIDE,
|
||||
texliveImageNameOveride: process.env.TEX_LIVE_IMAGE_NAME_OVERRIDE,
|
||||
texliveOpenoutAny: process.env.TEXLIVE_OPENOUT_ANY,
|
||||
texliveMaxPrintLine: process.env.TEXLIVE_MAX_PRINT_LINE,
|
||||
sentry: {
|
||||
dsn: process.env.SENTRY_DSN,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue