summaryrefslogtreecommitdiff
path: root/GitRepo.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-27 15:00:41 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-27 15:00:41 -0400
commit7bd7cca39932858a08dd50a15e5a6f2dc9daa6c0 (patch)
tree1b5e8aee02b7f06cc0b081dc7af334be18b3785e /GitRepo.hs
parentd92730bef6cc40cdd96ff24957a9c2d2bc3cb730 (diff)
some work on the sha1 backend; still incomplete
Diffstat (limited to 'GitRepo.hs')
-rw-r--r--GitRepo.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/GitRepo.hs b/GitRepo.hs
index ee1bdba34..941810235 100644
--- a/GitRepo.hs
+++ b/GitRepo.hs
@@ -195,8 +195,8 @@ run repo params = assertLocal repo $ do
pipeRead :: Repo -> [String] -> IO String
pipeRead repo params = assertLocal repo $ do
pOpen ReadFromPipe "git" (gitCommandLine repo params) $ \h -> do
- ret <- hGetContentsStrict h
- return ret
+ ret <- hGetContentsStrict h
+ return ret
{- Passed a location, recursively scans for all files that
- are checked into git at that location. -}