diff options
| author | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-11-13 23:59:49 +0100 |
|---|---|---|
| committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2012-11-13 23:59:49 +0100 |
| commit | 555f510e547cf2496bf909bd578c77f4c3b1a5d5 (patch) | |
| tree | ec325c6a077a5849d517809da8d45b264ab8d3ce /src/Hakyll/Core/Compiler | |
| parent | 50f8f819f9b67822305350b77117d4cb7a00cf45 (diff) | |
| download | hakyll-555f510e547cf2496bf909bd578c77f4c3b1a5d5.tar.gz | |
Various things...
Diffstat (limited to 'src/Hakyll/Core/Compiler')
| -rw-r--r-- | src/Hakyll/Core/Compiler/Require.hs | 4 |
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 |
