summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core/Run.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-14 08:50:34 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-14 08:50:34 +0100
commit6e7dc0e58fd2d7814934e0c041a4e18232102087 (patch)
tree8da9e502a245704a8fda38748efe6d02e76be318 /src/Hakyll/Core/Run.hs
parent3ea3c52f535d3faaa930dfc4ef5812f0ef690ec3 (diff)
downloadhakyll-6e7dc0e58fd2d7814934e0c041a4e18232102087.tar.gz
Micro-cleanup
Diffstat (limited to 'src/Hakyll/Core/Run.hs')
-rw-r--r--src/Hakyll/Core/Run.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Hakyll/Core/Run.hs b/src/Hakyll/Core/Run.hs
index 77b3fab..c81a5ff 100644
--- a/src/Hakyll/Core/Run.hs
+++ b/src/Hakyll/Core/Run.hs
@@ -16,7 +16,6 @@ import Data.Monoid (mempty, mappend)
import Data.Typeable (Typeable)
import Data.Binary (Binary)
import System.FilePath ((</>))
-import Control.Applicative ((<$>))
import Data.Set (Set)
import qualified Data.Set as S
@@ -115,7 +114,7 @@ addNewCompilers oldCompilers newCompilers = Hakyll $ do
-- Find the old graph and append the new graph to it. This forms the
-- complete graph
- completeGraph <- (mappend currentGraph) . hakyllGraph <$> get
+ completeGraph <- mappend currentGraph . hakyllGraph <$> get
liftIO $ writeDot "dependencies.dot" show completeGraph
@@ -190,6 +189,6 @@ runCompilers ((id', compiler) : compilers) = Hakyll $ do
unHakyll $ runCompilers compilers
-- Metacompiler, slightly more complicated
- MetaCompileRule newCompilers -> do
+ MetaCompileRule newCompilers ->
-- Actually I was just kidding, it's not hard at all
unHakyll $ addNewCompilers compilers newCompilers