diff options
Diffstat (limited to 'Git/Config.hs')
-rw-r--r-- | Git/Config.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/Config.hs b/Git/Config.hs index 171c3e6c6..32c0dd1cc 100644 --- a/Git/Config.hs +++ b/Git/Config.hs @@ -167,7 +167,7 @@ coreBare = "core.bare" fromPipe :: Repo -> String -> [CommandParam] -> IO (Either SomeException (Repo, String)) fromPipe r cmd params = try $ withHandle StdoutHandle createProcessSuccess p $ \h -> do - fileEncoding h + fileEncoding h val <- hGetContentsStrict h r' <- store val r return (r', val) |