diff options
author | Joey Hess <joey@kitenet.net> | 2013-08-04 13:07:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-08-04 13:07:55 -0400 |
commit | 9d06348fa368d502fd1330969cad3c0ea25286fa (patch) | |
tree | 4a1412d0d02420fcdb5ae42dff47a8dde62fe7c2 /Git.hs | |
parent | 944730682471f4e808f4f1faa9797a965ebadb8f (diff) |
missed some __WINDOWS__ defines
Diffstat (limited to 'Git.hs')
-rw-r--r-- | Git.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ module Git ( ) where import Network.URI (uriPath, uriScheme, unEscapeString) -#ifndef __WINDOWS__ +#ifndef mingw32_HOST_OS import System.Posix.Files #endif @@ -131,7 +131,7 @@ hookPath script repo = do ifM (catchBoolIO $ isexecutable hook) ( return $ Just hook , return Nothing ) where -#if __WINDOWS__ +#if mingw32_HOST_OS isexecutable f = doesFileExist f #else isexecutable f = isExecutable . fileMode <$> getFileStatus f |