Skip to content

Commit

Permalink
update test-startup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
dej4vu committed Jul 6, 2024
1 parent 77550f5 commit c1e892a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test-startup.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
#!/bin/sh -e
#https://github.com/purcell/emacs.d/blob/master/test-startup.sh
echo "Attempting startup..."
${EMACS:=emacs} -nw --batch \
--eval '(let ((debug-on-error t)
--eval '(progn
(defvar url-show-status)
(let ((debug-on-error t)
(url-show-status nil)
(user-emacs-directory default-directory)
(user-init-file (expand-file-name "init.el"))
(load-path (delq default-directory load-path)))
(setq package-check-signature nil)
(load-file user-init-file)
(run-hooks (quote after-init-hook)))'
(run-hooks (quote after-init-hook))))'
echo "Startup successful"

0 comments on commit c1e892a

Please sign in to comment.