From 5c3d06b070f81c4f55b26d89ad3fe074f7ad44ba Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 23 Jan 2020 16:42:08 -0400 Subject: [PATCH] Makefile: Move the fish completion to the vendor_completions.d directory. --- CHANGELOG | 1 + Makefile | 2 +- doc/bugs/Incorrect_install_dir_for_fish_completion.mdwn | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index e9b1c25b27..50339a1221 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -21,6 +21,7 @@ git-annex (7.20191231) UNRELEASED; urgency=medium using git credential to get the password. * Display a warning when concurrency is enabled but ssh connection caching is not enabled or won't work due to a crippled filesystem. + * Makefile: Move the fish completion to the vendor_completions.d directory. -- Joey Hess Wed, 01 Jan 2020 12:51:40 -0400 diff --git a/Makefile b/Makefile index 965f53e1fc..eb3a34e6a8 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ install-completions: build install -d $(DESTDIR)$(ZSH_COMPLETIONS_PATH) ./git-annex --zsh-completion-script git-annex 2>/dev/null \ > $(DESTDIR)$(ZSH_COMPLETIONS_PATH)/_git-annex - install -d $(DESTDIR)$(PREFIX)/$(SHAREDIR)/fish/completions + install -d $(DESTDIR)$(PREFIX)/$(SHAREDIR)/fish/vendor_completions.d ./git-annex --fish-completion-script git-annex 2>/dev/null \ > $(DESTDIR)$(PREFIX)/$(SHAREDIR)/fish/completions/git-annex.fish diff --git a/doc/bugs/Incorrect_install_dir_for_fish_completion.mdwn b/doc/bugs/Incorrect_install_dir_for_fish_completion.mdwn index 9c12d5a8ff..d400715579 100644 --- a/doc/bugs/Incorrect_install_dir_for_fish_completion.mdwn +++ b/doc/bugs/Incorrect_install_dir_for_fish_completion.mdwn @@ -35,3 +35,5 @@ Apparently this is a very common mistake :/ so far I've seen many more projects ### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders) Not a user, just here to help improve cross-distro packaging. :) + +> [[fixed|done]] --[[Joey]]