From 10e0f9efb0dfe6e68eda74c2c3ac06f378b48035 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Wed, 28 Aug 2019 21:06:52 +0200 Subject: [PATCH] Install fish completions in DEB package, closes #554 --- ci/before_deploy.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/before_deploy.bash b/ci/before_deploy.bash index 1293a86f..840fcf77 100755 --- a/ci/before_deploy.bash +++ b/ci/before_deploy.bash @@ -107,6 +107,9 @@ make_deb() { install -Dm644 "doc/$PROJECT_NAME.1" "$tempdir/usr/share/man/man1/$PROJECT_NAME.1" 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" + # readme and license install -Dm644 README.md "$tempdir/usr/share/doc/$PROJECT_NAME/README.md" install -Dm644 LICENSE-MIT "$tempdir/usr/share/doc/$PROJECT_NAME/LICENSE-MIT"