From 3498d5c6b1533ee443f16f28ddbdfb48767e99c6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 10 Jun 2018 17:22:57 +0200 Subject: [PATCH] Catch more *.elc files with bin/doom clean --- core/autoload/modules.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/modules.el b/core/autoload/modules.el index bc192aaa0..d0cddeb77 100644 --- a/core/autoload/modules.el +++ b/core/autoload/modules.el @@ -379,7 +379,7 @@ module. This does not include your byte-compiled, third party packages.'" (interactive) (cl-loop with default-directory = doom-emacs-dir for path in (append (doom-files-in doom-emacs-dir :match "\\.elc$" :depth 1) - (doom-files-in doom-private-dir :match "\\.elc$" :depth 1) + (doom-files-in doom-private-dir :match "\\.elc$" :depth 2) (doom-files-in doom-core-dir :match "\\.elc$") (doom-files-in doom-modules-dirs :match "\\.elc$" :depth 4)) for truepath = (file-truename path)