mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix ALREADY INSTALLED for packages with new backends #222
This commit is contained in:
@ -355,7 +355,8 @@ package.el as appropriate."
|
||||
(message! "Installing %s" (car pkg))
|
||||
(doom--condition-case!
|
||||
(message! " %s%s"
|
||||
(cond ((package-installed-p (car pkg))
|
||||
(cond ((and (package-installed-p (car pkg))
|
||||
(not (doom-package-different-backend-p (car pkg))))
|
||||
(dark (white "ALREADY INSTALLED")))
|
||||
((doom-install-package (car pkg) (cdr pkg))
|
||||
(green "DONE"))
|
||||
|
Reference in New Issue
Block a user