diff options
Diffstat (limited to 'Git')
-rw-r--r-- | Git/Command.hs | 2 | ||||
-rw-r--r-- | Git/Construct.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Git/Command.hs b/Git/Command.hs index 431569559..687f6802c 100644 --- a/Git/Command.hs +++ b/Git/Command.hs @@ -79,7 +79,7 @@ pipeNullSplit params repo = reap :: IO () reap = do -- throws an exception when there are no child processes - catchDefaultIO (getAnyProcessStatus False True) Nothing + catchDefaultIO Nothing (getAnyProcessStatus False True) >>= maybe noop (const reap) {- Runs a git command as a coprocess. -} diff --git a/Git/Construct.hs b/Git/Construct.hs index ce12f9b66..3c1cfdbdf 100644 --- a/Git/Construct.hs +++ b/Git/Construct.hs @@ -224,7 +224,7 @@ checkForRepo dir = <&&> doesDirectoryExist (dir </> "objects") gitDirFile = do c <- firstLine <$> - catchDefaultIO (readFile $ dir </> ".git") "" + catchDefaultIO "" (readFile $ dir </> ".git") return $ if gitdirprefix `isPrefixOf` c then Just $ Local { gitdir = drop (length gitdirprefix) c |