Skip to content

Commit

Permalink
Fix signature problem (#26)
Browse files Browse the repository at this point in the history
* Fix signature problem

* Properly require EPG

* Ensure package-gnupghome-dir is set in older versions of Emacs

* Use GnuPG CLI directly

* Move some stuff around

* Insert fresh key and use its full length id

* Specify keyserver

* Maybe this works?

* Maybe this?

* Just ignore signatures
  • Loading branch information
leotaku committed Apr 28, 2024
1 parent 4da49ea commit 4c6434e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion elisp-check.el
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ documentation on the usage of PREFIX and KNOWN-BUFFERS."
(dolist (package packages)
(elisp-check-log "Installing: %s" package)
(elisp-check-condition-case error
(package-install package)
(let ((package-check-signature nil))
(package-install package))
(error
(push (elisp-check-format-error error) errors))))
(when errors
Expand Down

0 comments on commit 4c6434e

Please sign in to comment.