fix(cli): doom {compile,clean} errors

- An improper autoload was preventing 'doom clean' from being
  recognized.
- 'doom compile' hadn't been updated to reflect changes introduced
  recently in 1402db5.

Amend: 6c0b7e1530
Ref: 1402db5129
This commit is contained in:
Henrik Lissner 2022-06-19 01:39:32 +02:00
parent 6963b784cc
commit 74f3c1d11c
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
2 changed files with 2 additions and 1 deletions

View file

@ -257,6 +257,7 @@ SEE ALSO:
(defautoload! ((build b purge p rollback)) "packages")
(defautoload! ((install i)))
(defautoload! ((compile c)))
(defautoload! (clean) "compile")
;; TODO Post-3.0 commands
;; (load! "gc" dir)

View file

@ -97,7 +97,7 @@ If RECOMPILE-P is non-nil, only recompile out-of-date files."
(let ((load-prefer-newer t)
(noninteractive t)
doom-interactive-p)
(doom-initialize 'force)
(require 'core-start)
(quiet! (doom-initialize-packages))
(quiet! (doom-initialize-modules))))