diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2014-04-11 21:12:01 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2014-04-11 21:12:01 +0200 |
commit | 8229765cbdf971c15e18fc8eb5a5733340b57739 (patch) | |
tree | 04d9cc96855bac300f0bd1a1dffcdad348824962 /tests/Hakyll/Core/Dependencies | |
parent | 889e6f59f761795af3f2cb83c2a551b9c8478d66 (diff) | |
download | hakyll-8229765cbdf971c15e18fc8eb5a5733340b57739.tar.gz |
Fix tag dependency issue, slightly improve caching
Diffstat (limited to 'tests/Hakyll/Core/Dependencies')
-rw-r--r-- | tests/Hakyll/Core/Dependencies/Tests.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Hakyll/Core/Dependencies/Tests.hs b/tests/Hakyll/Core/Dependencies/Tests.hs index d6e3094..efa848b 100644 --- a/tests/Hakyll/Core/Dependencies/Tests.hs +++ b/tests/Hakyll/Core/Dependencies/Tests.hs @@ -38,7 +38,8 @@ oldFacts = M.fromList , ("posts/02.md", []) , ("index.md", - [ PatternDependency "posts/*" ["posts/01.md", "posts/02.md"] + [ PatternDependency "posts/*" + (S.fromList ["posts/01.md", "posts/02.md"]) , IdentifierDependency "posts/01.md" , IdentifierDependency "posts/02.md" ]) |