mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
delete intermediate xdv files from xelatex
This commit is contained in:
parent
8d8f441ff8
commit
f2746b7d5b
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ module.exports = ResourceWriter =
|
||||||
should_delete = true
|
should_delete = true
|
||||||
if path.match(/^output\./) or path.match(/\.aux$/) or path.match(/^cache\//) # knitr cache
|
if path.match(/^output\./) or path.match(/\.aux$/) or path.match(/^cache\//) # knitr cache
|
||||||
should_delete = false
|
should_delete = false
|
||||||
if path == "output.pdf" or path == "output.dvi" or path == "output.log"
|
if path == "output.pdf" or path == "output.dvi" or path == "output.log" or path == "output.xdv"
|
||||||
should_delete = true
|
should_delete = true
|
||||||
if path == "output.tex" # created by TikzManager if present in output files
|
if path == "output.tex" # created by TikzManager if present in output files
|
||||||
should_delete = true
|
should_delete = true
|
||||||
|
|
Loading…
Reference in a new issue