» git rev-parse HEAD
2cb6678
» cabal repl
Preprocessing library directory-1.2.1.1...
[1 of 1] Compiling System.Directory ( System/Directory.hs, dist/build/System/Directory.o )
[...]
*System.Directory> createDirectoryIfMissing True "/foo"
*System.Directory> createDirectoryIfMissing True "/foo/bar"
*** Exception: /foo/bar: createDirectory: does not exist (No such file or directory)
AFAICT
|
) `E.catch` ((\_ -> return ()) :: IOException -> IO ()) |
is swallowing the exception thrown by
.
AFAICT
directory/System/Directory.hs
Line 408 in 68f85c8
directory/System/Directory.hs
Line 406 in 68f85c8