From baafa0f6357845201f4053d901379a7e50605039 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 29 Jul 2019 15:02:00 +0200 Subject: [PATCH] Fix #1617: fd is used despite being absent --- core/core-projects.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-projects.el b/core/core-projects.el index 88c34ba99..111414dca 100644 --- a/core/core-projects.el +++ b/core/core-projects.el @@ -99,7 +99,7 @@ c) are not valid projectile projects." ;; If fd exists, use it for git and generic projects. fd is a rust program ;; that is significantly faster than git ls-files or find, and it respects ;; .gitignore. This is recommended in the projectile docs. - (doom-projectile-fd-binary + ((executable-find doom-projectile-fd-binary) (setq projectile-git-command (concat doom-projectile-fd-binary " . --color=never --type f -0 -H -E .git")