summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDacto <dacto@users.noreply.github.com>2014-03-31 23:07:40 -0700
committerDacto <dacto@users.noreply.github.com>2014-03-31 23:07:40 -0700
commit3bb0919d25914bc82ea2147187c25575f7dddc5a (patch)
tree489c724e76acf9b8bd589a93a6b60c317a77dc19 /src
parentdc0c47f6df7ed653c804a794fd6ea5805092e1e2 (diff)
downloadhakyll-3bb0919d25914bc82ea2147187c25575f7dddc5a.tar.gz
Added imports that are missing when compiling under Windows.
Diffstat (limited to 'src')
-rw-r--r--src/Hakyll/Commands.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Hakyll/Commands.hs b/src/Hakyll/Commands.hs
index 0c0a084..e221dc5 100644
--- a/src/Hakyll/Commands.hs
+++ b/src/Hakyll/Commands.hs
@@ -15,7 +15,9 @@ module Hakyll.Commands
--------------------------------------------------------------------------------
import System.Exit (exitWith, ExitCode)
+import System.IO.Error (catchIOError)
import Control.Applicative
+import Control.Monad (void)
import Control.Concurrent
--------------------------------------------------------------------------------