Update :depth in doom-files-in call

Was searching for *.el files one level too deep.
This commit is contained in:
Henrik Lissner 2018-06-14 00:49:48 +02:00
parent b21d575eac
commit 6571c9eabf
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -608,7 +608,7 @@ If RECOMPILE-P is non-nil, only recompile out-of-date files."
;; Assemble el files we want to compile; taking into account that
;; MODULES may be a list of MODULE/SUBMODULE strings from the command
;; line.
(let ((target-files (doom-files-in targets :depth 2 :match "\\.el$")))
(let ((target-files (doom-files-in targets :depth 1 :match "\\.el$")))
(unless target-files
(if targets
(message "Couldn't find any valid targets")