From 189bbe6d843b516df30afbb2bab23d474b951cdb Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Wed, 23 Mar 2022 11:57:14 -0400 Subject: [PATCH] git-flow-avh: fix fish completion The previous completion would override the default git completions, resulting in error messages like: Error: git completion not found which came from: https://github.com/petervanderdoes/git-flow-completion/blob/db3c032411c2d6fd897b2bfc52d15a6fc4e3bfa3/git.fish#L41 By renaming the included completions to git-flow.fish, we ensure that they are scoped to the correct formula. --- Formula/git-flow-avh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/git-flow-avh.rb b/Formula/git-flow-avh.rb index 17c123b1b8ce3..0add433876dae 100644 --- a/Formula/git-flow-avh.rb +++ b/Formula/git-flow-avh.rb @@ -48,7 +48,7 @@ def install resource("completion").stage do bash_completion.install "git-flow-completion.bash" zsh_completion.install "git-flow-completion.zsh" - fish_completion.install "git.fish" + fish_completion.install "git.fish" => "git-flow.fish" end end