From 3249761ea7b569cbf9d937746a671c9dd7256809 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sun, 14 Mar 2021 14:40:31 -0400 Subject: [PATCH] FIX use absolute paths for home directory --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d63a40f..f03187e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,13 +20,13 @@ jobs: - name: Set up emacs config 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 run: | - emacs -batch -l ".emacs.d/init.el" + emacs -batch -l "~/.emacs.d/init.el" - name: Verify packages 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)))'