aboutsummaryrefslogtreecommitdiff
path: root/Utility/Directory.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-12-28 13:05:08 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-12-28 13:06:36 -0400
commit851b792bd19fd4299fcf91e83116a31c1aa5352f (patch)
treea1eece20ac1f1b842e3cec21161703e3ce3b447c /Utility/Directory.hs
parent8813a6a3ada14dd0adbe7cf105408b88e6b16b04 (diff)
clean build warning on windows
Diffstat (limited to 'Utility/Directory.hs')
-rw-r--r--Utility/Directory.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Utility/Directory.hs b/Utility/Directory.hs
index fae33b5c2..fa9d14ff0 100644
--- a/Utility/Directory.hs
+++ b/Utility/Directory.hs
@@ -134,11 +134,13 @@ moveFile src dest = tryIO (rename src dest) >>= onrename
_ <- tryIO $ removeFile tmp
throwM e'
+#ifndef mingw32_HOST_OS
isdir f = do
r <- tryIO $ getFileStatus f
case r of
(Left _) -> return False
(Right s) -> return $ isDirectory s
+#endif
{- Removes a file, which may or may not exist, and does not have to
- be a regular file.