summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-11-20 13:49:56 -0400
committerJoey Hess <joey@kitenet.net>2013-11-20 13:49:56 -0400
commitc2cd79e09b5aad1d634c58f5a130654649e25c49 (patch)
tree4cabe39e210a709bde4f73a0d4d5292abd64db9e
parent4af7c3a70968dc1f2318652c372113d4df22d18b (diff)
downloadgit-repair-c2cd79e09b5aad1d634c58f5a130654649e25c49.tar.gz
oops
-rw-r--r--Utility/Tmp.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Tmp.hs b/Utility/Tmp.hs
index 3770654..186cd12 100644
--- a/Utility/Tmp.hs
+++ b/Utility/Tmp.hs
@@ -62,7 +62,7 @@ withTmpDirIn :: FilePath -> Template -> (FilePath -> IO a) -> IO a
withTmpDirIn tmpdir template = bracket create remove
where
remove d = whenM (doesDirectoryExist d) $
- return () -- removeDirectoryRecursive d
+ removeDirectoryRecursive d
create = do
createDirectoryIfMissing True tmpdir
makenewdir (tmpdir </> template) (0 :: Int)