Exclude ghc-8.8.1 for windows

Due to https://gitlab.haskell.org/ghc/ghc/issues/17575
This commit is contained in:
jneira 2020-01-10 10:37:35 +01:00
parent af0b834c77
commit 52ca3a5321

View File

@ -104,8 +104,8 @@ getHieVersions = do
& mapMaybe
(T.stripPrefix stackYamlPrefix >=> T.stripSuffix stackYamlSuffix)
& map T.unpack
-- the following line excludes `8.6.3` on windows systems
& filter (\p -> not isWindowsSystem || p /= "8.6.3")
-- the following line excludes `8.6.3` and `8.8.1` on windows systems
& filter (\p -> not (isWindowsSystem && p `elem` ["8.6.3","8.8.1"]))
& sort
return hieVersions