diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-18 15:05:29 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-18 15:05:29 -0400 |
commit | 9a5f9fddc68475218ddb76027e00497f9a612984 (patch) | |
tree | 75153bcdec750cbfc8d8377ad3145f086d68c7a3 /Seek.hs | |
parent | 76a26745c2b022b4eee06a982958e71b27568959 (diff) |
assistant: Fix OSX-specific bug that caused the startup scan to try to follow symlinks to other directories, and add their contents to the annex.
Diffstat (limited to 'Seek.hs')
-rw-r--r-- | Seek.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ withPathContents a params = map a . concat <$> liftIO (mapM get params) where get p = ifM (isDirectory <$> getFileStatus p) ( map (\f -> (f, makeRelative (parentDir p) f)) - <$> dirContentsRecursiveSkipping (".git" `isSuffixOf`) p + <$> dirContentsRecursiveSkipping (".git" `isSuffixOf`) True p , return [(p, takeFileName p)] ) |