aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/lfs_ext.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/lfs_ext.lua b/core/lfs_ext.lua
index d4acbbb8..47e37e86 100644
--- a/core/lfs_ext.lua
+++ b/core/lfs_ext.lua
@@ -19,7 +19,8 @@ lfs.default_filter = {
'!.jar', '!.jpeg', '!.jpg', '!.o', '!.pdf', '!.png', '!.so', '!.tar', '!.tgz',
'!.tif', '!.tiff', '!.xz', '!.zip',
-- Directories to exclude.
- '!/%.bzr$', '!/%.git$', '!/%.hg$', '!/%.svn$', '!/node_modules$',
+ '!/%.bzr$', '!/%.git$', '!/%.hg$', '!/%.svn$', '!/_FOSSIL_$',
+ '!/node_modules$'
}
-- Documentation is in `lfs.walk()`.