skip the cache directory when finding output files

This commit is contained in:
Brian Gough 2015-02-24 14:40:22 +00:00
parent 4002849e20
commit 5c1d61c955

View file

@ -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)