Skip to content

Commit 5169ceb

Browse files
committed
Don't use resolved commands in cider-jack-in
This breaks with commands like `npx shadow-cljs`, as the second part of the command gets discarded.
1 parent e0deb8e commit 5169ceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ own buffer."
886886
(cider-inject-jack-in-dependencies command-global-opts params project-type)
887887
params))
888888

889-
(cmd (format "%s %s" command-resolved params)))
889+
(cmd (format "%s %s" command params)))
890890
(if (or project-dir cider-allow-jack-in-without-project)
891891
(progn
892892
(when (or project-dir

0 commit comments

Comments
 (0)