summaryrefslogtreecommitdiff
path: root/GitRepo.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-22 21:00:18 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-22 21:00:18 -0400
commit7051763b5b9ef4c230169a432384488d66078cee (patch)
tree8e648b99cd729f47af50ac901e6382171afb182c /GitRepo.hs
parentd12512bfc6f707e08afed97edafde5ee7d91a629 (diff)
tweak
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 4e4a063e8..ad58b28a0 100644
--- a/GitRepo.hs
+++ b/GitRepo.hs
@@ -450,7 +450,7 @@ checkAttr repo attr files = do
-- directory. Convert to absolute, and then convert the filenames
-- in its output back to relative.
cwd <- getCurrentDirectory
- let absfiles = map (absPathFrom cwd) files
+ let absfiles = map (absPathFrom cwd) files
(_, s) <- pipeBoth "git" (toCommand params) $ join "\0" absfiles
return $ map (topair $ cwd++"/") $ lines s
where