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:
parent
b4e6022c82
commit
e4a55d31bc
1 changed files with 2 additions and 2 deletions
|
@ -221,8 +221,8 @@ problems with doom."
|
|||
(interactive)
|
||||
(doom//reload-doom-autoloads)
|
||||
(unwind-protect
|
||||
(progn (doom//packages-autoremove)
|
||||
(doom//packages-install))
|
||||
(progn (ignore-errors (doom//packages-autoremove))
|
||||
(ignore-errors (doom//packages-install)))
|
||||
(doom//reload-package-autoloads)
|
||||
(doom//byte-compile nil 'recompile)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue