summaryrefslogtreecommitdiff
path: root/GitRepo.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-11-01 22:50:53 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-11-01 22:50:53 -0400
commit58c89565e9f9b3a05b0b4ff33944b543d226c398 (patch)
treee4872870d5479989bbf36c4854b3157db8584828 /GitRepo.hs
parent13514b6afc6cb043dfa742dd0e69efca7a4374df (diff)
updat
Diffstat (limited to 'GitRepo.hs')
-rw-r--r--GitRepo.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/GitRepo.hs b/GitRepo.hs
index bc6d45066..244acda86 100644
--- a/GitRepo.hs
+++ b/GitRepo.hs
@@ -149,7 +149,7 @@ attributes repo
{- Looks up a gitattributes value for each file in a list. -}
checkAttr :: Repo -> String -> [FilePath] -> IO [(FilePath, String)]
checkAttr repo attr files = do
- (handle, s) <- pipeBoth "git" params files0
+ (_, s) <- pipeBoth "git" params files0
return $ map topair $ lines s
-- XXX handle is left open, this is ok for git-annex, but may need
-- to be cleaned up for other uses.