aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-08-30 12:25:33 +0200
committerYann Herklotz <git@yannherklotz.com>2021-08-30 12:25:33 +0200
commite60617ebf20a8a81b342ca7af095000329e9336e (patch)
tree9c8118e9328256e15d331f72a8d6d2b35e7f5ac8
parent1528328180a2e1974315aebd4d30440aaac72c4f (diff)
downloademacs-zettelkasten-e60617ebf20a8a81b342ca7af095000329e9336e.tar.gz
emacs-zettelkasten-e60617ebf20a8a81b342ca7af095000329e9336e.zip
Try to fix melpazoid errors
-rw-r--r--.github/workflows/melpazoid.yml4
-rw-r--r--org-zettelkasten.el2
-rw-r--r--zettelkasten.el2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/melpazoid.yml b/.github/workflows/melpazoid.yml
index d3f492f..302d6c9 100644
--- a/.github/workflows/melpazoid.yml
+++ b/.github/workflows/melpazoid.yml
@@ -20,7 +20,7 @@ jobs:
sudo apt-get install emacs && emacs --version
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
pip install ~/melpazoid
- - name: Run
+ - name: Check org-zettelkasten
env:
LOCAL_REPO: ${{ github.workspace }}
# RECIPE is your recipe as written for MELPA:
@@ -28,7 +28,7 @@ jobs:
# set this to false (or remove it) if the package isn't on MELPA:
EXIST_OK: true
run: echo $GITHUB_REF && make -C ~/melpazoid
- - name: Run
+ - name: Check zettelkasten
env:
LOCAL_REPO: ${{ github.workspace }}
# RECIPE is your recipe as written for MELPA:
diff --git a/org-zettelkasten.el b/org-zettelkasten.el
index f5279ff..18d446f 100644
--- a/org-zettelkasten.el
+++ b/org-zettelkasten.el
@@ -39,7 +39,7 @@
"Helper to work with zettelkasten notes."
:group 'applications)
-(defcustom org-zettelkasten-directory (concat (file-name-directory user-init-file) "/org-zettelkasten")
+(defcustom org-zettelkasten-directory (expand-file-name "~/org-zettelkasten")
"Main zettelkasten directory."
:type 'string
:group 'org-zettelkasten)
diff --git a/zettelkasten.el b/zettelkasten.el
index 62811de..2f8090c 100644
--- a/zettelkasten.el
+++ b/zettelkasten.el
@@ -43,7 +43,7 @@ After that, changing the prefix key requires manipulating keymaps."
:type 'key-sequence
:group 'zettelkasten)
-(defcustom zettelkasten-directory (concat (file-name-directory user-init-file) "/zettelkasten")
+(defcustom zettelkasten-directory (expand-file-name "~/zettelkasten")
"Main zettelkasten directory."
:type 'string
:group 'zettelkasten)