summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core/Run.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Hakyll/Core/Run.hs')
-rw-r--r--src/Hakyll/Core/Run.hs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Hakyll/Core/Run.hs b/src/Hakyll/Core/Run.hs
index e9ec47e..c5e6489 100644
--- a/src/Hakyll/Core/Run.hs
+++ b/src/Hakyll/Core/Run.hs
@@ -91,8 +91,8 @@ hakyllWith rules provider store = do
let isModified = id' `S.member` modified'
-- Run the compiler
- compiled <- runCompilerJob comp id' provider (dependencyLookup map')
- url store isModified
+ compiled <- runCompiler comp id' provider (dependencyLookup map')
+ url store isModified
putStrLn $ "Generated target: " ++ show id'
case url of
@@ -103,9 +103,6 @@ hakyllWith rules provider store = do
makeDirectories path
write path compiled
- -- Store it in the cache
- storeResult store id' compiled
-
putStrLn ""
return $ M.insert id' compiled map'