diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-10-18 16:20:32 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-10-18 16:52:54 +0200 |
| commit | 914285a5e88e34179a72422ea0fffc41d1a43815 (patch) | |
| tree | 944a8e05060f607c9925b4f792ffbd295b95d3fc /lisp/magit-bisect.el | |
| parent | e28da38ad4d73fcf265a11aa4fda16a331c1bc29 (diff) | |
No longer add global git arguments twice
`magit-process-git' adds the global arguments, but in [1: fd5cf61730],
which added that function and started using it in many places, we did
not remove the now redundant calls to `magit-process-git-arguments'
in some of these places, resulting in the global arguments being added
twice.
1: 2021-07-20 fd5cf61730af2051200f81741fd21e8c54f19164
magit-process-git: New function
Diffstat (limited to 'lisp/magit-bisect.el')
| -rw-r--r-- | lisp/magit-bisect.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/magit-bisect.el b/lisp/magit-bisect.el index 47095de..55dec38 100644 --- a/lisp/magit-bisect.el +++ b/lisp/magit-bisect.el @@ -206,8 +206,7 @@ bisect run'." (magit-with-toplevel (magit-process-git (list :file (expand-file-name "BISECT_CMD_OUTPUT" (magit-gitdir))) - (magit-process-git-arguments - (list "bisect" "start" bad good args))) + "bisect" "start" bad good args) (magit-refresh))) (magit--with-connection-local-variables (magit-git-bisect "run" (list shell-file-name |
