From 5d6ec8d611a9f798c2e789ef8f2a9bd68ae3a11a Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Fri, 24 Jun 2016 08:17:55 -0400 Subject: [PATCH] Remove -Werror from compilation To upload to hackage, -Wall -Werror cannot both be set. This can be achieved by installing with stack's `--pedantic` flag. --- unused.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unused.cabal b/unused.cabal index 50fcc93..401c7e4 100644 --- a/unused.cabal +++ b/unused.cabal @@ -77,13 +77,13 @@ library , vector , mtl , transformers - ghc-options: -Wall -Werror -O + ghc-options: -Wall -O default-language: Haskell2010 executable unused hs-source-dirs: app main-is: Main.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror -O + ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O build-depends: base , unused , optparse-applicative