Skip to content

Commit fb9d5ed

Browse files
authored
Merge pull request Homebrew#132300 from Volatus/tanka/fix-wrong-variable-name
tanka: fix wrong variable name for version
2 parents 6e4c14b + dd0ec13 commit fb9d5ed

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

Formula/tanka.rb

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ class Tanka < Formula
1313
end
1414

1515
bottle do
16-
sha256 cellar: :any_skip_relocation, arm64_ventura: "27dc70150541299dfbe928daedbdee2df708940dba0ea089ddea17b2209eb410"
17-
sha256 cellar: :any_skip_relocation, arm64_monterey: "27dc70150541299dfbe928daedbdee2df708940dba0ea089ddea17b2209eb410"
18-
sha256 cellar: :any_skip_relocation, arm64_big_sur: "27dc70150541299dfbe928daedbdee2df708940dba0ea089ddea17b2209eb410"
19-
sha256 cellar: :any_skip_relocation, ventura: "56c8ca7bc4fd650ce5cee43820990e867486d77b3948635db3956ae49523675c"
20-
sha256 cellar: :any_skip_relocation, monterey: "56c8ca7bc4fd650ce5cee43820990e867486d77b3948635db3956ae49523675c"
21-
sha256 cellar: :any_skip_relocation, big_sur: "56c8ca7bc4fd650ce5cee43820990e867486d77b3948635db3956ae49523675c"
22-
sha256 cellar: :any_skip_relocation, x86_64_linux: "6cd0d630538ea680ca271f79e9f146ae262498bbc9647bc14ea719029331b10e"
16+
rebuild 1
17+
sha256 cellar: :any_skip_relocation, arm64_ventura: "4f3a2fa62bc8f5ae3da1b3c880c786b97f710d4bde687420d99d98602a888b42"
18+
sha256 cellar: :any_skip_relocation, arm64_monterey: "4f3a2fa62bc8f5ae3da1b3c880c786b97f710d4bde687420d99d98602a888b42"
19+
sha256 cellar: :any_skip_relocation, arm64_big_sur: "4f3a2fa62bc8f5ae3da1b3c880c786b97f710d4bde687420d99d98602a888b42"
20+
sha256 cellar: :any_skip_relocation, ventura: "9a3e8cee736fa65731bbe847e5fedffd3b5f1d8d40cd50713d65aac5f6096e53"
21+
sha256 cellar: :any_skip_relocation, monterey: "9a3e8cee736fa65731bbe847e5fedffd3b5f1d8d40cd50713d65aac5f6096e53"
22+
sha256 cellar: :any_skip_relocation, big_sur: "9a3e8cee736fa65731bbe847e5fedffd3b5f1d8d40cd50713d65aac5f6096e53"
23+
sha256 cellar: :any_skip_relocation, x86_64_linux: "be924f6cb53e04ef9c5547564b5f634ae48c56b9ea2507cf36cb737a0f094047"
2324
end
2425

2526
depends_on "go" => :build
@@ -29,7 +30,7 @@ def install
2930
ENV["CGO_ENABLED"] = "0"
3031
ldflags = %W[
3132
-s -w
32-
-X github.com/grafana/tanka/pkg/tanka.CURRENT_VERSION=#{version}
33+
-X github.com/grafana/tanka/pkg/tanka.CurrentVersion=#{version}
3334
]
3435
system "go", "build", *std_go_args(ldflags: ldflags.join(" "), output: bin/"tk"), "./cmd/tk"
3536
end

0 commit comments

Comments
 (0)