Skip to content

Commit c4f1643

Browse files
committed
Add a missing car function call
1 parent 3597b47 commit c4f1643

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
@@ -333,7 +333,7 @@ Throws an error if PROJECT-TYPE is unknown. Known types are
333333
("clojure-cli" (cider--resolve-command cider-clojure-cli-command))
334334
;; here we have to account for the possibility that the command is either
335335
;; "npx shadow-cljs" or just "shadow-cljs"
336-
("shadow-cljs" (cider--resolve-command ((split-string cider-shadow-cljs-command))))
336+
("shadow-cljs" (cider--resolve-command (car (split-string cider-shadow-cljs-command))))
337337
("gradle" (cider--resolve-command cider-gradle-command))
338338
(_ (user-error "Unsupported project type `%s'" project-type))))
339339

0 commit comments

Comments
 (0)