[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm e707bd3255 1/2: Fix package-upgrade action async
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm e707bd3255 1/2: Fix package-upgrade action async |
Date: |
Sun, 14 Jul 2024 04:00:02 -0400 (EDT) |
branch: elpa/helm
commit e707bd3255d9105fb03caae56f49752d44506af5
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix package-upgrade action async
---
helm-packages.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helm-packages.el b/helm-packages.el
index 219000639a..7a6b2d202e 100644
--- a/helm-packages.el
+++ b/helm-packages.el
@@ -62,7 +62,7 @@
(mapcar #'symbol-name mkd)
(when (y-or-n-p (format "Upgrade %s packages? " (length mkd)))
(if helm-packages-async
- (async-package-do-action 'install mkd error-file)
+ (async-package-do-action 'upgrade mkd error-file)
(mapc #'package-upgrade mkd))))))
(defun helm-packages-describe (candidate)