diff options
Diffstat (limited to 'Git/CheckIgnore.hs')
-rw-r--r-- | Git/CheckIgnore.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Git/CheckIgnore.hs b/Git/CheckIgnore.hs index a03f45432..322088f89 100644 --- a/Git/CheckIgnore.hs +++ b/Git/CheckIgnore.hs @@ -43,7 +43,10 @@ checkIgnoreStart repo = ifM supportedGitVersion where params = [ Param "check-ignore" - , Params "-z --stdin --verbose --non-matching" + , Param "-z" + , Param "--stdin" + , Param "--verbose" + , Param "--non-matching" ] repo' = repo { gitGlobalOpts = filter (not . pathspecs) (gitGlobalOpts repo) } pathspecs (Param "--literal-pathspecs") = True |