summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2013-01-15 17:15:46 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2013-01-15 17:15:46 +0100
commite53ca6724c8f5715792ad6b269ede52f21eb606c (patch)
tree0784fda9450175cf1ffefabc8bacbe959026e82f /src/Hakyll/Core
parentcf47549f0a975c427706af9aef75fc4346c330ae (diff)
downloadhakyll-e53ca6724c8f5715792ad6b269ede52f21eb606c.tar.gz
Make run return ExitCode
Diffstat (limited to 'src/Hakyll/Core')
-rw-r--r--src/Hakyll/Core/Runtime.hs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/Hakyll/Core/Runtime.hs b/src/Hakyll/Core/Runtime.hs
index 1b83692..39d72a7 100644
--- a/src/Hakyll/Core/Runtime.hs
+++ b/src/Hakyll/Core/Runtime.hs
@@ -17,7 +17,7 @@ import qualified Data.Map as M
import Data.Monoid (mempty)
import Data.Set (Set)
import qualified Data.Set as S
-import System.Exit (ExitCode (..), exitWith)
+import System.Exit (ExitCode (..))
import System.FilePath ((</>))
@@ -41,8 +41,7 @@ import Hakyll.Core.Writable
--------------------------------------------------------------------------------
--- | TODO Make this return exit code?
-run :: Configuration -> Verbosity -> Rules a -> IO RuleSet
+run :: Configuration -> Verbosity -> Rules a -> IO (ExitCode, RuleSet)
run config verbosity rules = do
-- Initialization
logger <- Logger.new verbosity
@@ -82,7 +81,7 @@ run config verbosity rules = do
Left e -> do
Logger.error logger e
Logger.flush logger
- exitWith $ ExitFailure 1
+ return (ExitFailure 1, ruleSet)
Right (_, s, _) -> do
Store.set store factsKey $ runtimeFacts s
@@ -91,7 +90,7 @@ run config verbosity rules = do
removeDirectory $ tmpDirectory config
Logger.flush logger
- return ruleSet
+ return (ExitSuccess, ruleSet)
where
factsKey = ["Hakyll.Core.Runtime.run", "facts"]