@@ -672,25 +672,25 @@ choose."
672
672
" Find `cider-lein-command' on `exec-path' if possible, or return `nil' .
673
673
674
674
In case `default-directory' is non-local we assume the command is available."
675
- (or (file-remote-p default-directory)
676
- (executable-find cider-lein-command)
677
- (executable-find (concat cider-lein-command " .bat" ))))
675
+ (shell-quote-argument ( or (file-remote-p default-directory)
676
+ (executable-find cider-lein-command)
677
+ (executable-find (concat cider-lein-command " .bat" ) ))))
678
678
679
679
(defun cider--boot-resolve-command ()
680
680
" Find `cider-boot-command' on `exec-path' if possible, or return `nil' .
681
681
682
682
In case `default-directory' is non-local we assume the command is available."
683
- (or (file-remote-p default-directory)
684
- (executable-find cider-boot-command)
685
- (executable-find (concat cider-boot-command " .exe" ))))
683
+ (shell-quote-argument ( or (file-remote-p default-directory)
684
+ (executable-find cider-boot-command)
685
+ (executable-find (concat cider-boot-command " .exe" ) ))))
686
686
687
687
(defun cider--gradle-resolve-command ()
688
688
" Find `cider-gradle-command' on `exec-path' if possible, or return `nil' .
689
689
690
690
In case `default-directory' is non-local we assume the command is available."
691
- (or (file-remote-p default-directory)
692
- (executable-find cider-gradle-command)
693
- (executable-find (concat cider-gradle-command " .exe" ))))
691
+ (shell-quote-argument ( or (file-remote-p default-directory)
692
+ (executable-find cider-gradle-command)
693
+ (executable-find (concat cider-gradle-command " .exe" ) ))))
694
694
695
695
696
696
; ;; Check that the connection is working well
0 commit comments