mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-23 18:40:59 +00:00
skip the cache directory when finding output files
This commit is contained in:
parent
4002849e20
commit
5c1d61c955
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ module.exports = OutputFileFinder =
|
||||||
_callback(error, fileList)
|
_callback(error, fileList)
|
||||||
_callback = () ->
|
_callback = () ->
|
||||||
|
|
||||||
args = [directory, "-type", "f"]
|
args = [directory, "-name", ".cache", "-prune", "-o", "-type", "f", "-print"]
|
||||||
logger.log args: args, "running find command"
|
logger.log args: args, "running find command"
|
||||||
|
|
||||||
proc = spawn("find", args)
|
proc = spawn("find", args)
|
||||||
|
|
Loading…
Reference in a new issue