diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-15 17:25:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-15 17:43:37 -0400 |
commit | 0b63ee6cd56f57f172695cd25b7c7ec89281ba7e (patch) | |
tree | 669a76799c46898e9dad846bb245395a234b39b6 /Git/CheckAttr.hs | |
parent | e1baf48d8853a5015009fe822a125192bb952222 (diff) |
run git coprocesses with gitEnv
Diffstat (limited to 'Git/CheckAttr.hs')
-rw-r--r-- | Git/CheckAttr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/CheckAttr.hs b/Git/CheckAttr.hs index 6b321f8b8..13a7287b1 100644 --- a/Git/CheckAttr.hs +++ b/Git/CheckAttr.hs @@ -22,7 +22,7 @@ type Attr = String checkAttrStart :: [Attr] -> Repo -> IO CheckAttrHandle checkAttrStart attrs repo = do cwd <- getCurrentDirectory - h <- CoProcess.start "git" $ toCommand $ gitCommandLine params repo + h <- gitCoProcessStart params repo return (h, attrs, cwd) where params = |