mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
record latexmk output
This commit is contained in:
parent
7b9912034d
commit
3db513cfc9
2 changed files with 9 additions and 0 deletions
|
@ -217,6 +217,11 @@ module.exports = CompileManager = {
|
|||
error = new Error('compilation')
|
||||
error.validate = 'fail'
|
||||
}
|
||||
// make top-level output accesible to user, write in background for simplicity
|
||||
if (output != null) {
|
||||
fs.writeFile(Path.join(compileDir, "output.stdout"), output.stdout, () => { })
|
||||
fs.writeFile(Path.join(compileDir, "output.stderr"), output.stderr, () => { })
|
||||
}
|
||||
// compile was killed by user, was a validation, or a compile which failed validation
|
||||
if (
|
||||
(error != null ? error.terminated : undefined) ||
|
||||
|
|
|
@ -201,6 +201,10 @@ module.exports = ResourceWriter = {
|
|||
// knitr cache
|
||||
should_delete = false
|
||||
}
|
||||
if (path.match(/^output.(stdout|stderr)$/)) {
|
||||
// latexmk output
|
||||
should_delete = true
|
||||
}
|
||||
if (path.match(/^output-.*/)) {
|
||||
// Tikz cached figures (default case)
|
||||
should_delete = false
|
||||
|
|
Loading…
Reference in a new issue