File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -338,8 +338,8 @@ Throws an error if PROJECT-TYPE is unknown."
338338 ; ; here we have to account for the possibility that the command is either
339339 ; ; "npx shadow-cljs" or just "shadow-cljs"
340340 ('shadow-cljs (let ((parts (split-string cider-shadow-cljs-command)))
341- (when-let* ((command (cider--resolve-command (car parts))))
342- (mapconcat #'identity (cons command (cdr parts)) " " ))))
341+ (when-let* ((command (cider--resolve-command (car parts))))
342+ (mapconcat #'identity (cons command (cdr parts)) " " ))))
343343 ('gradle (cider--resolve-command cider-gradle-command))
344344 (_ (user-error " Unsupported project type `%S' " project-type))))
345345
@@ -359,13 +359,13 @@ Throws an error if PROJECT-TYPE is unknown."
359359 ('lein cider-lein-parameters)
360360 ('boot cider-boot-parameters)
361361 ('clojure-cli (format cider-clojure-cli-parameters
362- (concat
363- " ["
364- (mapconcat
365- (apply-partially #'format " \" %s\" " )
366- (cider-jack-in-normalized-nrepl-middlewares)
367- " , " )
368- " ]" )))
362+ (concat
363+ " ["
364+ (mapconcat
365+ (apply-partially #'format " \" %s\" " )
366+ (cider-jack-in-normalized-nrepl-middlewares)
367+ " , " )
368+ " ]" )))
369369 ('shadow-cljs cider-shadow-cljs-parameters)
370370 ('gradle cider-gradle-parameters)
371371 (_ (user-error " Unsupported project type `%S' " project-type))))
You can’t perform that action at this time.
0 commit comments