mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #173 from overleaf/bg-openout-any
add setting TEXLIVE_OPENOUT_ANY
This commit is contained in:
commit
8464ce33a1
2 changed files with 5 additions and 0 deletions
|
@ -142,6 +142,10 @@ module.exports = CompileManager = {
|
||||||
)
|
)
|
||||||
// set up environment variables for chktex
|
// set up environment variables for chktex
|
||||||
const env = {}
|
const env = {}
|
||||||
|
if (Settings.texliveOpenoutAny && Settings.texliveOpenoutAny !== '') {
|
||||||
|
// override default texlive openout_any environment variable
|
||||||
|
env.openout_any = Settings.texliveOpenoutAny
|
||||||
|
}
|
||||||
// only run chktex on LaTeX files (not knitr .Rtex files or any others)
|
// only run chktex on LaTeX files (not knitr .Rtex files or any others)
|
||||||
const isLaTeXFile =
|
const isLaTeXFile =
|
||||||
request.rootResourcePath != null
|
request.rootResourcePath != null
|
||||||
|
|
|
@ -57,6 +57,7 @@ module.exports = {
|
||||||
parallelSqlQueryLimit: process.env.FILESTORE_PARALLEL_SQL_QUERY_LIMIT || 1,
|
parallelSqlQueryLimit: process.env.FILESTORE_PARALLEL_SQL_QUERY_LIMIT || 1,
|
||||||
filestoreDomainOveride: process.env.FILESTORE_DOMAIN_OVERRIDE,
|
filestoreDomainOveride: process.env.FILESTORE_DOMAIN_OVERRIDE,
|
||||||
texliveImageNameOveride: process.env.TEX_LIVE_IMAGE_NAME_OVERRIDE,
|
texliveImageNameOveride: process.env.TEX_LIVE_IMAGE_NAME_OVERRIDE,
|
||||||
|
texliveOpenoutAny: process.env.TEXLIVE_OPENOUT_ANY,
|
||||||
sentry: {
|
sentry: {
|
||||||
dsn: process.env.SENTRY_DSN
|
dsn: process.env.SENTRY_DSN
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue