mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-11 13:07:28 -05:00
Don't abort package install on aborting autoremove
Originally, it would not bother running doom//packages-install if you aborted (answered "n" to the prompt) during doom//packages-autoremove.
This commit is contained in:
@ -221,8 +221,8 @@ problems with doom."
|
|||||||
(interactive)
|
(interactive)
|
||||||
(doom//reload-doom-autoloads)
|
(doom//reload-doom-autoloads)
|
||||||
(unwind-protect
|
(unwind-protect
|
||||||
(progn (doom//packages-autoremove)
|
(progn (ignore-errors (doom//packages-autoremove))
|
||||||
(doom//packages-install))
|
(ignore-errors (doom//packages-install)))
|
||||||
(doom//reload-package-autoloads)
|
(doom//reload-package-autoloads)
|
||||||
(doom//byte-compile nil 'recompile)))
|
(doom//byte-compile nil 'recompile)))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user