Skip to content

Commit

Permalink
Create test-startup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
beacoder authored Apr 30, 2024
1 parent 84c0310 commit 4afe3f2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test-startup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh -e
echo "Attempting startup..."
${EMACS:=emacs} -nw --batch \
--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))))'
echo "Startup successful"

0 comments on commit 4afe3f2

Please sign in to comment.