From f69f35bc4af49b3a25ed6407375c03f5b7569432 Mon Sep 17 00:00:00 2001 From: Daniel Gröber Date: Tue, 9 Jun 2015 00:03:46 +0200 Subject: Don't rely on the locale at build time --- CabalHelper/Data.hs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'CabalHelper') diff --git a/CabalHelper/Data.hs b/CabalHelper/Data.hs index 06539c7..2ab6ea5 100644 --- a/CabalHelper/Data.hs +++ b/CabalHelper/Data.hs @@ -20,6 +20,8 @@ module CabalHelper.Data where import Control.Monad import Data.Functor +import qualified Data.ByteString as BS +import qualified Data.ByteString.UTF8 as UTF8 import Language.Haskell.TH import System.FilePath import System.Directory @@ -34,7 +36,7 @@ withHelperSources action = withSystemTempDirectory "caba-helper" $ \dir -> do sourceFiles :: [(FilePath, String)] sourceFiles = - [ ("Main.hs", $(LitE . StringL <$> runIO (readFile "CabalHelper/Main.hs"))) - , ("Common.hs", $(LitE . StringL <$> runIO (readFile "CabalHelper/Common.hs"))) - , ("Types.hs", $(LitE . StringL <$> runIO (readFile "CabalHelper/Types.hs"))) + [ ("Main.hs", $(LitE . StringL <$> runIO (UTF8.toString <$> BS.readFile "CabalHelper/Main.hs"))) + , ("Common.hs", $(LitE . StringL <$> runIO (UTF8.toString <$> BS.readFile "CabalHelper/Common.hs"))) + , ("Types.hs", $(LitE . StringL <$> runIO (UTF8.toString <$> BS.readFile "CabalHelper/Types.hs"))) ] -- cgit v1.2.3