Skip to content
Snippets Groups Projects
Commit 693d1763 authored by Mikhail Glushenkov's avatar Mikhail Glushenkov
Browse files

Merge pull request #2669 from grayjay/cabal-freeze-tests

Allow cabal freeze tests to run on Windows
parents a33248dd 38a46db8
No related branches found
No related tags found
No related merge requests found
......@@ -110,4 +110,7 @@ removeCabalConfig = do
readCabalConfig :: IO String
readCabalConfig = do
readFile $ dir </> "cabal.config"
config <- readFile $ dir </> "cabal.config"
-- Ensure that the file is closed so that it can be
-- deleted by the next test on Windows.
length config `seq` return config
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment