From 8a2c7fe3d430d899e85295f80311917006c8c733 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 26 Mar 2025 07:18:02 -0400 Subject: [PATCH] fix: malformed projectile-known-projects-file Without the trailing slash, the known projects file ended up being {doom-cache-dir}/projectileprojects.eld when it should be {doom-cache-dir}/projectile/projects.eld. Amend: ad7d9fa65794 --- lisp/doom-projects.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/doom-projects.el b/lisp/doom-projects.el index c3edc5997..7ed857d82 100644 --- a/lisp/doom-projects.el +++ b/lisp/doom-projects.el @@ -14,8 +14,10 @@ Is nil if no executable is found in your PATH during startup.") Is nil if no executable is found in your PATH during startup.") -(defvar doom-projectile-cache-dir (file-name-concat doom-profile-cache-dir "projectile") - "The directory where per-project projectile file index caches are stored.") +(defvar doom-projectile-cache-dir (file-name-concat doom-profile-cache-dir "projectile/") + "The directory where per-project projectile file index caches are stored. + +Must end with a slash.") ;;