Function: cider-doctor--check-build-tools
cider-doctor--check-build-tools is a byte-compiled function defined in
cider-doctor.el.
Signature
(cider-doctor--check-build-tools)
Documentation
Check for the common Clojure build tools on the executable search path.
Absence is not fatal on its own (you might only use one), so a missing tool is reported as info rather than an error.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doctor.el
(defun cider-doctor--check-build-tools ()
"Check for the common Clojure build tools on the executable search path.
Absence is not fatal on its own (you might only use one), so a missing
tool is reported as info rather than an error."
(mapcar
(lambda (tool)
(if-let* ((path (executable-find tool)))
(cider-doctor--result 'ok (format "%s found" tool) :detail path)
(cider-doctor--result 'info (format "%s not on PATH" tool))))
'("lein" "clojure" "clj" "bb" "node")))