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/HashObject.hs | |
parent | e1baf48d8853a5015009fe822a125192bb952222 (diff) |
run git coprocesses with gitEnv
Diffstat (limited to 'Git/HashObject.hs')
-rw-r--r-- | Git/HashObject.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/HashObject.hs b/Git/HashObject.hs index c90c9ec3d..7d6b5cc19 100644 --- a/Git/HashObject.hs +++ b/Git/HashObject.hs @@ -17,7 +17,7 @@ import qualified Utility.CoProcess as CoProcess type HashObjectHandle = CoProcess.CoProcessHandle hashObjectStart :: Repo -> IO HashObjectHandle -hashObjectStart = CoProcess.start "git" . toCommand . gitCommandLine +hashObjectStart = gitCoProcessStart [ Param "hash-object" , Param "-w" , Param "--stdin-paths" |