Add shell completion installation to homebrew formulae

Signed-off-by: Katsunori Tanaka <zodiac.brave.story@gmail.com>
pull/1855/head
darklore 3 years ago committed by Katsunori Tanaka
parent 19caeb178f
commit 4661e4519d
No known key found for this signature in database
GPG Key ID: F45B52E27B30973B

@ -52,6 +52,17 @@ brews:
dependencies:
- name: kubectl
type: optional
install: |
bin.install "flux"
bash_output = Utils.safe_popen_read(bin/"flux", "completion", "bash")
(bash_completion/"flux").write bash_output
zsh_output = Utils.safe_popen_read(bin/"flux", "completion", "zsh")
(zsh_completion/"_flux").write zsh_output
fish_output = Utils.safe_popen_read(bin/"flux", "completion", "fish")
(fish_completion/"flux.fish").write fish_output
test: |
system "#{bin}/flux --version"
publishers:

Loading…
Cancel
Save