Skip to content

Commit

Permalink
Merge pull request #199838 from Homebrew/gci-completion
Browse files Browse the repository at this point in the history
gci: add completion support
  • Loading branch information
BrewTestBot authored Dec 3, 2024
2 parents 615da1c + d0fc8e3 commit f9e4b54
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Formula/g/gci.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,21 @@ class Gci < Formula
head "https://github.com/daixiang0/gci.git", branch: "master"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "2e359d43f6e9493681f2b5b71d130dd402ad4caa4e367ca155ecc2b293b60403"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "2e359d43f6e9493681f2b5b71d130dd402ad4caa4e367ca155ecc2b293b60403"
sha256 cellar: :any_skip_relocation, arm64_ventura: "2e359d43f6e9493681f2b5b71d130dd402ad4caa4e367ca155ecc2b293b60403"
sha256 cellar: :any_skip_relocation, sonoma: "99e6d31ed6740799d948cd3710a7ed07f805bc66e82b3563a626242c9f3a4db0"
sha256 cellar: :any_skip_relocation, ventura: "99e6d31ed6740799d948cd3710a7ed07f805bc66e82b3563a626242c9f3a4db0"
sha256 cellar: :any_skip_relocation, x86_64_linux: "152bf0214bf70dbc6fff4b812f93ca75a83923937b4ea605084933c93cebfd1f"
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_sequoia: "ca22bfa1698f88b7b13685952488a1676f72a0e1bf8f6aaa921af7f0b177cfe4"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "ca22bfa1698f88b7b13685952488a1676f72a0e1bf8f6aaa921af7f0b177cfe4"
sha256 cellar: :any_skip_relocation, arm64_ventura: "ca22bfa1698f88b7b13685952488a1676f72a0e1bf8f6aaa921af7f0b177cfe4"
sha256 cellar: :any_skip_relocation, sonoma: "1de2b679e09da2cdd4b851e14d02b639e3eb9f8dbd9b3b44cfbf2b8bc5b9a48f"
sha256 cellar: :any_skip_relocation, ventura: "1de2b679e09da2cdd4b851e14d02b639e3eb9f8dbd9b3b44cfbf2b8bc5b9a48f"
sha256 cellar: :any_skip_relocation, x86_64_linux: "91bf88994d9d8986d778178b2bfeab695f73fc5923c9aee55d3283b64579c37d"
end

depends_on "go" => :build

def install
system "go", "build", *std_go_args(ldflags: "-s -w")

generate_completions_from_executable(bin/"gci", "completion")
end

test do
Expand Down

0 comments on commit f9e4b54

Please sign in to comment.