summaryrefslogtreecommitdiff
path: root/src/Hakyll/Main.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2016-12-22 13:33:00 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2016-12-22 13:33:28 +0100
commit6f5b1c05f4a7b980d5b2dd4006999a6919121f2d (patch)
treed919c6683721ed41ca890ef6f39e4a22223e04a2 /src/Hakyll/Main.hs
parent3f4de12cc33b32cbf1d29f8dfea38e7029bbe422 (diff)
downloadhakyll-6f5b1c05f4a7b980d5b2dd4006999a6919121f2d.tar.gz
Fix the exit code behaviour of check
Fixes #496
Diffstat (limited to 'src/Hakyll/Main.hs')
-rw-r--r--src/Hakyll/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Main.hs b/src/Hakyll/Main.hs
index b48743b..d034887 100644
--- a/src/Hakyll/Main.hs
+++ b/src/Hakyll/Main.hs
@@ -52,7 +52,7 @@ hakyllWithExitCode conf rules = do
case args'' of
Build -> Commands.build conf logger rules
- Check _ -> Commands.check conf logger check' >> ok
+ Check _ -> Commands.check conf logger check'
Clean -> Commands.clean conf logger >> ok
Deploy -> Commands.deploy conf
Preview p -> Commands.preview conf logger rules p >> ok