Skip to content

Commit

Permalink
Merge pull request #199985 from Homebrew/livekit-cli-completion
Browse files Browse the repository at this point in the history
livekit-cli: add completion support
  • Loading branch information
BrewTestBot authored Dec 4, 2024
2 parents 441c467 8fb0e02 commit b09665e
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions Formula/l/livekit-cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 7,13 @@ class LivekitCli < Formula
head "https://github.com/livekit/livekit-cli.git", branch: "main"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "4ef43d828cfc44303ce80d6075fa13a8170a13d31b9efbd8eb81e5553222eb53"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "4ef43d828cfc44303ce80d6075fa13a8170a13d31b9efbd8eb81e5553222eb53"
sha256 cellar: :any_skip_relocation, arm64_ventura: "4ef43d828cfc44303ce80d6075fa13a8170a13d31b9efbd8eb81e5553222eb53"
sha256 cellar: :any_skip_relocation, sonoma: "dcceac9d9ccec2f0b82895bf25ac4f96be2b311209863694d2d16a2e806afecd"
sha256 cellar: :any_skip_relocation, ventura: "dcceac9d9ccec2f0b82895bf25ac4f96be2b311209863694d2d16a2e806afecd"
sha256 cellar: :any_skip_relocation, x86_64_linux: "c4d030d2a870a1b6d77674b23bec5b2d94f92813c9dbce6d8fd7f824d01e9da2"
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_sequoia: "59685a544c9d54781a0dd0f06fe754f0dbb759b3101a5adf42a9655e15408d0e"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "59685a544c9d54781a0dd0f06fe754f0dbb759b3101a5adf42a9655e15408d0e"
sha256 cellar: :any_skip_relocation, arm64_ventura: "59685a544c9d54781a0dd0f06fe754f0dbb759b3101a5adf42a9655e15408d0e"
sha256 cellar: :any_skip_relocation, sonoma: "2bfe3fdad2cda79b6391cf85367cb8df0f6de18a4ad7fe5ea1da69c8af9ab364"
sha256 cellar: :any_skip_relocation, ventura: "2bfe3fdad2cda79b6391cf85367cb8df0f6de18a4ad7fe5ea1da69c8af9ab364"
sha256 cellar: :any_skip_relocation, x86_64_linux: "bf375fcbb312921c7d70492e4779f1d92c099006a91452ef863857b1e0072949"
end

depends_on "go" => :build
Expand All @@ -22,6 23,10 @@ def install
system "go", "build", *std_go_args(ldflags:, output: bin/"lk"), "./cmd/lk"

bin.install_symlink "lk" => "livekit-cli"

bash_completion.install "autocomplete/bash_autocomplete" => "lk"
fish_completion.install "autocomplete/fish_autocomplete" => "lk.fish"
zsh_completion.install "autocomplete/zsh_autocomplete" => "_lk"
end

test do
Expand Down

0 comments on commit b09665e

Please sign in to comment.