From 61e39158de87b764b8f3bb549b5a224fda52f322 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Fri, 6 Mar 2020 23:47:26 +0100 Subject: [PATCH] Install fish completions into 'vendor_completions.d', fixes #651 --- ci/before_deploy.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/before_deploy.bash b/ci/before_deploy.bash index d5c7f5de..ac4bb159 100755 --- a/ci/before_deploy.bash +++ b/ci/before_deploy.bash @@ -112,7 +112,7 @@ make_deb() { gzip --best "$tempdir/usr/share/man/man1/$PROJECT_NAME.1" # completions - install -Dm644 "assets/completions/bat.fish" "$tempdir/usr/share/fish/completions/$PROJECT_NAME.fish" + install -Dm644 "assets/completions/bat.fish" "$tempdir/usr/share/fish/vendor_completions.d/$PROJECT_NAME.fish" # readme and license install -Dm644 README.md "$tempdir/usr/share/doc/$PROJECT_NAME/README.md"