branch: elpa/hyperdrive
commit 7e3b3d2a56c266c4df88501c8c7df44b6a8c35a7
Author: Adam Porter <[email protected]>
Commit: Joseph Turner <[email protected]>

    Fix: (h/install) Use make-temp-name
---
 hyperdrive.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hyperdrive.el b/hyperdrive.el
index f3d4b2574a..4ec8133d47 100644
--- a/hyperdrive.el
+++ b/hyperdrive.el
@@ -1331,7 +1331,7 @@ If FORCEP, don't prompt for confirmation before 
downloading."
              (cl-parse-integer
               (alist-get 'content-length (plz-response-headers response)))))
          (download (url sha256)
-           (let ((temp-file (make-temp-file "hyperdrive-gateway-")))
+           (let ((temp-file (make-temp-name "hyperdrive-gateway-")))
              (setf h/install-process
                    (plz 'get url :as `(file ,temp-file) :timeout nil
                      :then (lambda (filename)

Reply via email to