]> git.eshelyaron.com Git - emacs.git/commitdiff
Show package name in package-vc--unpack prompt
authorDaanturo <daanturo@gmail.com>
Thu, 24 Nov 2022 17:06:37 +0000 (00:06 +0700)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 25 Nov 2022 08:02:16 +0000 (09:02 +0100)
* lisp/emacs-lisp/package-vc.el (package-vc--unpack): Display the
package name when asking whether to overwrite its previous
checkout.  (Bug#59548)

lisp/emacs-lisp/package-vc.el

index bf1ea2bdf401f1dccf7ea0f39a1378cb3dc7fbe0..deb0debab4d114442f57b7c791c3771f581466de 100644 (file)
@@ -523,7 +523,7 @@ checkout.  This overrides the `:branch' attribute in PKG-SPEC."
                (pkg-dir (expand-file-name dirname package-user-dir)))
     (setf (package-desc-dir pkg-desc) pkg-dir)
     (when (file-exists-p pkg-dir)
-      (if (yes-or-no-p "Overwrite previous checkout?")
+      (if (yes-or-no-p (format "Overwrite previous checkout for package `%s'?" name))
           (package--delete-directory pkg-dir)
         (error "There already exists a checkout for %s" name)))
     (package-vc--clone pkg-desc pkg-spec pkg-dir rev)