summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Git/CheckAttr.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Git/CheckAttr.hs b/Git/CheckAttr.hs
index 8de19390f..696d8aafd 100644
--- a/Git/CheckAttr.hs
+++ b/Git/CheckAttr.hs
@@ -28,9 +28,10 @@ checkAttrStart attrs repo = do
return (pid, from, to, attrs, cwd)
where
params =
- [ Param "check-attr" ]
- ++ map Param attrs ++
- [ Params "-z --stdin" ]
+ [ Param "check-attr"
+ , Params "-z --stdin"
+ ] ++ map Param attrs ++
+ [ Param "--" ]
{- Stops git check-attr. -}
checkAttrStop :: CheckAttrHandle -> IO ()