summaryrefslogtreecommitdiff
path: root/Utility/TempFile.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/TempFile.hs')
-rw-r--r--Utility/TempFile.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility/TempFile.hs b/Utility/TempFile.hs
index 1e823c10e..8d50dd8b2 100644
--- a/Utility/TempFile.hs
+++ b/Utility/TempFile.hs
@@ -31,9 +31,9 @@ withTempFile :: String -> (FilePath -> Handle -> IO a) -> IO a
withTempFile template a = bracket create remove use
where
create = do
- tmpdir <- catch getTemporaryDirectory (const $ return ".")
+ tmpdir <- catchDefaultIO getTemporaryDirectory "."
openTempFile tmpdir template
remove (name, handle) = do
hClose handle
- catchBool (removeFile name >> return True)
+ catchBoolIO (removeFile name >> return True)
use (name, handle) = a name handle