mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Ignore both .cache and .archive and other hidden files in finding output files
This commit is contained in:
parent
66fa6a3e2e
commit
9c7e8af851
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ module.exports = OutputFileFinder =
|
|||
_callback(error, fileList)
|
||||
_callback = () ->
|
||||
|
||||
args = [directory, "-name", ".cache", "-prune", "-o", "-type", "f", "-print"]
|
||||
args = [directory, "-name", ".*", "-prune", "-o", "-type", "f", "-print"]
|
||||
logger.log args: args, "running find command"
|
||||
|
||||
proc = spawn("find", args)
|
||||
|
|
Loading…
Reference in a new issue