mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix bin/doom compile error introduced by e2a11d24fd
With a commit of e2a11d24fd
, when it comes to
`doom compile`, modules aren't loaded anymore, which corrupts the compiling process.
What I did is just adding the necessity parts for the doom's byte compiler.
This commit is contained in:
@ -101,7 +101,8 @@ If RECOMPILE-P is non-nil, only recompile out-of-date files."
|
|||||||
(noninteractive t)
|
(noninteractive t)
|
||||||
doom-interactive-p)
|
doom-interactive-p)
|
||||||
(doom-initialize 'force)
|
(doom-initialize 'force)
|
||||||
(quiet! (doom-initialize-packages))))
|
(quiet! (doom-initialize-packages))
|
||||||
|
(quiet! (doom-initialize-modules))))
|
||||||
|
|
||||||
(if (null targets)
|
(if (null targets)
|
||||||
(print! (info "No targets to %scompile" (if recompile-p "re" "")))
|
(print! (info "No targets to %scompile" (if recompile-p "re" "")))
|
||||||
|
Reference in New Issue
Block a user