diff options
| -rw-r--r-- | lisp/magit-bisect.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/magit-bisect.el b/lisp/magit-bisect.el index 8f9fa40..1b62b0a 100644 --- a/lisp/magit-bisect.el +++ b/lisp/magit-bisect.el @@ -204,7 +204,9 @@ bisect run'." (magit-process-git-arguments (list "bisect" "start" bad good args))) (magit-refresh))) - (magit-git-bisect "run" (list shell-file-name shell-command-switch cmdline))) + (magit--with-connection-local-variables + (magit-git-bisect "run" (list shell-file-name + shell-command-switch cmdline)))) (defun magit-git-bisect (subcommand &optional args no-assert) (unless (or no-assert (magit-bisect-in-progress-p)) |
