summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core/Compiler
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-11-13 23:59:49 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2012-11-13 23:59:49 +0100
commit555f510e547cf2496bf909bd578c77f4c3b1a5d5 (patch)
treeec325c6a077a5849d517809da8d45b264ab8d3ce /src/Hakyll/Core/Compiler
parent50f8f819f9b67822305350b77117d4cb7a00cf45 (diff)
downloadhakyll-555f510e547cf2496bf909bd578c77f4c3b1a5d5.tar.gz
Various things...
Diffstat (limited to 'src/Hakyll/Core/Compiler')
-rw-r--r--src/Hakyll/Core/Compiler/Require.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Hakyll/Core/Compiler/Require.hs b/src/Hakyll/Core/Compiler/Require.hs
index 1dc96e7..5838852 100644
--- a/src/Hakyll/Core/Compiler/Require.hs
+++ b/src/Hakyll/Core/Compiler/Require.hs
@@ -31,7 +31,7 @@ require :: (Binary a, Typeable a) => Identifier -> Compiler a
require id' = do
store <- compilerStore <$> compilerAsk
- compilerTell [Identifier id']
+ compilerTell [IdentifierDependency id']
compilerResult $ CompilerRequire id' $ do
result <- compilerUnsafeIO $ Store.get store (key id')
case result of
@@ -54,7 +54,7 @@ requireAll :: (Binary a, Typeable a) => Pattern -> Compiler [a]
requireAll pattern = do
universe <- compilerUniverse <$> compilerAsk
let matching = filterMatches pattern universe
- compilerTell [Pattern pattern matching]
+ compilerTell [PatternDependency pattern matching]
mapM require matching