mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
cli/doctor: fix stringp error if fd isn't installed
This commit is contained in:
@ -18,7 +18,7 @@
|
|||||||
(/ size 1024))
|
(/ size 1024))
|
||||||
(explain! "Consider deleting it from your system (manually)"))))
|
(explain! "Consider deleting it from your system (manually)"))))
|
||||||
|
|
||||||
(unless (executable-find doom-projectile-fd-binary)
|
(unless (ignore-errors (executable-find doom-projectile-fd-binary))
|
||||||
(warn! "Couldn't find the `fd' binary; project file searches will be slightly slower")
|
(warn! "Couldn't find the `fd' binary; project file searches will be slightly slower")
|
||||||
(unless (executable-find "rg")
|
(unless (executable-find "rg")
|
||||||
(warn! "Couldn't find the `rg' binary either; project file searches will be even slower")))
|
(warn! "Couldn't find the `rg' binary either; project file searches will be even slower")))
|
||||||
|
Reference in New Issue
Block a user