From be6fcece3a37bb4abc199f847732cfb5359edc43 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 30 Nov 2024 23:03:19 -0500 Subject: [PATCH] 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: 5e84709577b2 --- lisp/cli/gc.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/cli/gc.el b/lisp/cli/gc.el index 927613b13..eb1542818 100644 --- a/lisp/cli/gc.el +++ b/lisp/cli/gc.el @@ -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