skip the cache directory when finding output files
This commit is contained in:
@@ -37,7 +37,7 @@ module.exports = OutputFileFinder =
|
||||
_callback(error, fileList)
|
||||
_callback = () ->
|
||||
|
||||
args = [directory, "-type", "f"]
|
||||
args = [directory, "-name", ".cache", "-prune", "-o", "-type", "f", "-print"]
|
||||
logger.log args: args, "running find command"
|
||||
|
||||
proc = spawn("find", args)
|
||||
|
||||
Reference in New Issue
Block a user