FIX use absolute paths for home directory

This commit is contained in:
Nathan Dwarshuis 2021-03-14 14:40:31 -04:00
parent 117c6b2a31
commit 3249761ea7
1 changed files with 3 additions and 3 deletions

View File

@ -20,13 +20,13 @@ jobs:
- name: Set up emacs config - name: Set up emacs config
run: | run: |
cp -a -r etc local straight init.el .emacs.d/ cp -a -r etc local straight init.el ~/.emacs.d/
- name: Test initialization and build - name: Test initialization and build
run: | run: |
emacs -batch -l ".emacs.d/init.el" emacs -batch -l "~/.emacs.d/init.el"
- name: Verify packages - name: Verify packages
run: | run: |
emacs -batch -l ".emacs.d/init.el" --eval '(assert (not (nd/verify-required-packages)))' emacs -batch -l "~/.emacs.d/init.el" --eval '(assert (not (nd/verify-required-packages)))'