diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-22 21:00:18 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-22 21:00:18 -0400 |
commit | 7051763b5b9ef4c230169a432384488d66078cee (patch) | |
tree | 8e648b99cd729f47af50ac901e6382171afb182c /GitRepo.hs | |
parent | d12512bfc6f707e08afed97edafde5ee7d91a629 (diff) |
tweak
Diffstat (limited to 'GitRepo.hs')
-rw-r--r-- | GitRepo.hs | 2 |
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 |