only exclude clsi-specific files from output list

This commit is contained in:
Brian Gough
2017-09-26 09:47:29 +01:00
parent 8305268848
commit 0930b1cd8f
2 changed files with 4 additions and 4 deletions

View File

@@ -29,8 +29,10 @@ module.exports = OutputFileFinder =
callback = (error, fileList) ->
_callback(error, fileList)
_callback = () ->
args = [directory, "-name", ".*", "-prune", "-o", "-type", "f", "-print"]
# don't include clsi-specific files/directories in the output list
EXCLUDE_DIRS = ["-name", ".cache", "-o", "-name", ".archive","-o", "-name", ".project-*"]
args = [directory, "(", EXCLUDE_DIRS..., ")", "-prune", "-o", "-type", "f", "-print"]
logger.log args: args, "running find command"
proc = spawn("find", args)