diff options
author | Joey Hess <joey@kitenet.net> | 2012-02-21 00:16:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-02-21 00:16:24 -0400 |
commit | cac130b205fca9fc45833296dc326b3fd6385163 (patch) | |
tree | bd27ca58e17fa0fd2daa79011257b2d5b22bf717 /Git/CheckAttr.hs | |
parent | 7e17151e69fcd86fd5cb90dd61ff55d2d017fee7 (diff) |
cleanup
Diffstat (limited to 'Git/CheckAttr.hs')
-rw-r--r-- | Git/CheckAttr.hs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Git/CheckAttr.hs b/Git/CheckAttr.hs index 65e8e03d8..6b321f8b8 100644 --- a/Git/CheckAttr.hs +++ b/Git/CheckAttr.hs @@ -18,13 +18,11 @@ type CheckAttrHandle = (CoProcess.CoProcessHandle, [Attr], String) type Attr = String {- Starts git check-attr running to look up the specified gitattributes - - values and return a handle. -} + - values and returns a handle. -} checkAttrStart :: [Attr] -> Repo -> IO CheckAttrHandle checkAttrStart attrs repo = do cwd <- getCurrentDirectory - h <- CoProcess.start "git" $ toCommand $ - gitCommandLine params repo - CoProcess.query h fileEncoding fileEncoding + h <- CoProcess.start "git" $ toCommand $ gitCommandLine params repo return (h, attrs, cwd) where params = @@ -33,7 +31,6 @@ checkAttrStart attrs repo = do ] ++ map Param attrs ++ [ Param "--" ] -{- Stops git check-attr. -} checkAttrStop :: CheckAttrHandle -> IO () checkAttrStop (h, _, _) = CoProcess.stop h @@ -46,8 +43,11 @@ checkAttr (h, attrs, cwd) want file = do [v] -> return v _ -> error $ "unable to determine " ++ want ++ " attribute of " ++ file where - send to = hPutStr to $ file' ++ "\0" + send to = do + fileEncoding to + hPutStr to $ file' ++ "\0" receive from = forM attrs $ \attr -> do + fileEncoding from l <- hGetLine from return (attr, attrvalue attr l) {- Before git 1.7.7, git check-attr worked best with |