diff options
Diffstat (limited to 'Library/Formula/git-flow.rb')
| -rw-r--r-- | Library/Formula/git-flow.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Library/Formula/git-flow.rb b/Library/Formula/git-flow.rb index 6f852b351..a5e0dfeae 100644 --- a/Library/Formula/git-flow.rb +++ b/Library/Formula/git-flow.rb @@ -22,7 +22,16 @@ class GitFlow < Formula GitFlowCompletion.new.brew do (prefix+'etc/bash_completion.d').install "git-flow-completion.bash" - (share+'zsh/functions').install "git-flow-completion.zsh" + (share+'zsh/site-functions').install "git-flow-completion.zsh" end end + + def caveats; <<-EOS.undent + Bash completion has been installed to: + #{etc}/bash_completion.d + + zsh completion has been installed to: + #{HOMEBREW_PREFIX}/share/zsh/site-functions + EOS + end end |
