diff options
author | Dacto <dacto@users.noreply.github.com> | 2014-03-31 23:07:40 -0700 |
---|---|---|
committer | Dacto <dacto@users.noreply.github.com> | 2014-03-31 23:07:40 -0700 |
commit | 3bb0919d25914bc82ea2147187c25575f7dddc5a (patch) | |
tree | 489c724e76acf9b8bd589a93a6b60c317a77dc19 /src/Hakyll | |
parent | dc0c47f6df7ed653c804a794fd6ea5805092e1e2 (diff) | |
download | hakyll-3bb0919d25914bc82ea2147187c25575f7dddc5a.tar.gz |
Added imports that are missing when compiling under Windows.
Diffstat (limited to 'src/Hakyll')
-rw-r--r-- | src/Hakyll/Commands.hs | 2 |
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 -------------------------------------------------------------------------------- |