summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-27 19:11:55 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-27 19:11:55 -0500
commit5598b01487c89c1ed69e7548d55c1a7c048febd5 (patch)
tree9dad0aa1bb7cc706d776ba3a3cdd02a5fea8cdea
parent3d5a3d8edd223a3c43def4f0de8f0c6f238a7650 (diff)
downloadconf-5598b01487c89c1ed69e7548d55c1a7c048febd5.tar.gz
conf-5598b01487c89c1ed69e7548d55c1a7c048febd5.zip
fix hooks directory
-rw-r--r--Makefile.hornet6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.hornet b/Makefile.hornet
index b79144d..3b2ef25 100644
--- a/Makefile.hornet
+++ b/Makefile.hornet
@@ -31,7 +31,7 @@ EMPTYDIRS := \
INSTALL_CUSTOM := \
$(patsubst services/available/%,$(INTO)/.services/enabled/%,$(wildcard services/available/*)) \
/var/spool/cron/$(USER) \
- $(INTO)/Maildir/.notmuch/hooks/post-new
+ $(INTO)/.cache/notmuch/hooks/post-new
BUILD := \
config/alacritty/alacritty.yml \
@@ -47,9 +47,9 @@ clean ::
/var/spool/cron/$(USER) : crontab
@crontab $<
-$(INTO)/Maildir/.notmuch/hooks/post-new: notmuch/hooks/post-new
+$(INTO)/.cache/notmuch/hooks/post-new: notmuch/hooks/post-new
@[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
- $(MKDIR) $(INTO)/Maildir/.notmuch/hooks
+ $(MKDIR) $(INTO)/.cache/notmuch/hooks
$(LN) $(PWD)/$< $@
$(INTO)/.services/enabled :