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."
338
338
; ; here we have to account for the possibility that the command is either
339
339
; ; "npx shadow-cljs" or just "shadow-cljs"
340
340
('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)) " " ))))
343
343
('gradle (cider--resolve-command cider-gradle-command))
344
344
(_ (user-error " Unsupported project type `%S' " project-type))))
345
345
@@ -359,13 +359,13 @@ Throws an error if PROJECT-TYPE is unknown."
359
359
('lein cider-lein-parameters)
360
360
('boot cider-boot-parameters)
361
361
('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
+ " ]" )))
369
369
('shadow-cljs cider-shadow-cljs-parameters)
370
370
('gradle cider-gradle-parameters)
371
371
(_ (user-error " Unsupported project type `%S' " project-type))))
You can’t perform that action at this time.
0 commit comments