Skip to content

Commit

Permalink
Don't check package signatures during startup test
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Feb 2, 2024
1 parent 125632d commit 0f5934b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test-startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ ${EMACS:=emacs} -nw --batch \
(url-show-status nil)
(user-emacs-directory default-directory)
(user-init-file (expand-file-name "init.el"))
(load-path (delq default-directory load-path)))
(load-path (delq default-directory load-path))
(package-check-signature nil))
(load-file user-init-file)
(run-hooks (quote after-init-hook))))'
echo "Startup successful"

0 comments on commit 0f5934b

Please sign in to comment.