Correct list sep

This commit is contained in:
jneira 2020-01-27 11:33:03 +01:00
parent 559982c19e
commit 8cbf3f9731

View File

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