fix(cli): doom gc

cli/gc.el accidentally snuck into 5e84709, along with a particular
v3-isms that doesn't belong in Doom yet, such as autoloads in CLI libs
and them providing subfeatures of doom-cli, rather than doom-cli-*.
These have been reversed for now.

Amend: 5e84709577
This commit is contained in:
Henrik Lissner
2024-11-30 23:03:19 -05:00
parent ec65616284
commit be6fcece3a

View File

@ -125,7 +125,6 @@
;;
;;; Commands
;;;###autoload
(defcli! (gc)
((nobuilds-p ("-b" "--no-builds") "Don't purge unneeded (built) packages")
(noelpa-p ("-p" "--no-elpa") "Don't purge ELPA packages")
@ -191,5 +190,5 @@ remains lean."
;; (keep-history-p ( "--keep-history") "Don't regraft repos"))
;; "Purge unused profile data, generations, and packages.")
(provide 'doom-cli '(gc))
(provide 'doom-cli-gc)
;;; gc.el ends here