summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core/Provider/Internal.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Hakyll/Core/Provider/Internal.hs')
-rw-r--r--src/Hakyll/Core/Provider/Internal.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Hakyll/Core/Provider/Internal.hs b/src/Hakyll/Core/Provider/Internal.hs
index 1360ef5..301c25c 100644
--- a/src/Hakyll/Core/Provider/Internal.hs
+++ b/src/Hakyll/Core/Provider/Internal.hs
@@ -51,8 +51,7 @@ newProvider :: Store -- ^ Store to use
-> FilePath -- ^ Search directory
-> IO Provider -- ^ Resulting provider
newProvider store ignore directory = do
- list <- map fromFilePath . filter (not . ignore) <$>
- getRecursiveContents directory
+ list <- map fromFilePath <$> getRecursiveContents ignore directory
cache <- newIORef M.empty
return $ Provider directory (S.fromList list) cache store