diff options
author | Chris Wong <lambda.fairy@gmail.com> | 2016-10-14 22:44:24 +1300 |
---|---|---|
committer | Chris Wong <lambda.fairy@gmail.com> | 2016-10-14 23:07:04 +1300 |
commit | 218d68363adc426b91dcbcdfb44f9f3da85f2e7a (patch) | |
tree | 3f344223f9f60a6590142a6b5bf3f6cc2e1c0afe /src | |
parent | ccb004ba10cfcdbcc419440e5f877605896bac4c (diff) | |
download | hakyll-218d68363adc426b91dcbcdfb44f9f3da85f2e7a.tar.gz |
Update to optparse-applicative 0.13
Diffstat (limited to 'src')
-rw-r--r-- | src/Hakyll/Main.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Hakyll/Main.hs b/src/Hakyll/Main.hs index c46c705..b48743b 100644 --- a/src/Hakyll/Main.hs +++ b/src/Hakyll/Main.hs @@ -16,7 +16,8 @@ import System.Exit (ExitCode(ExitSuccess), exitWit -------------------------------------------------------------------------------- -import Options.Applicative +import Data.Monoid ((<>)) +import Options.Applicative -------------------------------------------------------------------------------- |