missed some __WINDOWS__ defines
This commit is contained in:
parent
a837ed47f7
commit
6a97896b47
7 changed files with 26 additions and 24 deletions
4
Git.hs
4
Git.hs
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue