branch: elpa/package-lint
commit 7aeb9ff19b92fc9e9d7732d50368ee1f37b87782
Author: Steve Purcell <st...@sanityinc.com>
Commit: Steve Purcell <st...@sanityinc.com>

    Don't check package signatures at install time
---
 run-tests.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/run-tests.sh b/run-tests.sh
index 5ef1ccb05d..462714ec25 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -7,9 +7,9 @@ NEEDED_PACKAGES="cl-lib let-alist compat"
 INIT_PACKAGE_EL="(progn \
   (require 'package) \
   (push '(\"melpa\" . \"https://melpa.org/packages/\";) package-archives) \
+  (setq package-check-signature nil) \
   (package-initialize) \
-  (unless package-archive-contents \
-     (package-refresh-contents)) \
+  (package-refresh-contents) \
   (dolist (pkg '(${NEEDED_PACKAGES})) \
     (unless (package-installed-p pkg) \
       (package-install pkg))))"

Reply via email to