diff options
Diffstat (limited to 'Git')
-rw-r--r-- | Git/CheckAttr.hs | 7 |
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 () |