From 7f4fba02ef7648ab67d89542ba59095fc06cbc43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Saparelli?= Date: Sat, 13 Jan 2024 14:29:55 +1300 Subject: [PATCH] Remove fish completion from rpm and deb packaging (#767) --- crates/cli/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index fd933ff..28b496a 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -159,7 +159,7 @@ assets = [ ["../../doc/watchexec.1.md", "usr/share/doc/watchexec/watchexec.1.md", "644"], ["../../doc/watchexec.1", "usr/share/man/man1/watchexec.1.html", "644"], ["../../completions/bash", "usr/share/bash-completion/completions/watchexec", "644"], - ["../../completions/fish", "usr/share/fish/completions/watchexec.fish", "644"], + ["../../completions/fish", "usr/share/fish/vendor_completions.d/watchexec.fish", "644"], ["../../completions/zsh", "usr/share/zsh/site-functions/_watchexec", "644"], ["../../doc/logo.svg", "usr/share/icons/hicolor/scalable/apps/watchexec.svg", "644"], ] @@ -171,7 +171,7 @@ assets = [ { source = "../../doc/watchexec.1.md", dest = "/usr/share/doc/watchexec/watchexec.1.md", mode = "644", doc = true }, { source = "../../doc/watchexec.1", dest = "/usr/share/man/man1/watchexec.1.html", mode = "644" }, { source = "../../completions/bash", dest = "/usr/share/bash-completion/completions/watchexec", mode = "644" }, - { source = "../../completions/fish", dest = "/usr/share/fish/completions/watchexec.fish", mode = "644" }, + { source = "../../completions/fish", dest = "/usr/share/fish/vendor_completions.d/watchexec.fish", mode = "644" }, { source = "../../completions/zsh", dest = "/usr/share/zsh/site-functions/_watchexec", mode = "644" }, { source = "../../doc/logo.svg", dest = "/usr/share/icons/hicolor/scalable/apps/watchexec.svg", mode = "644" }, # set conf = true for config file when that lands