Skip to content

Commit c24400d

Browse files
author
github-actions
committed
Update formulas for version 1.12.5-internal-rc0
1 parent c9489e0 commit c24400d

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
class TctlAT1125-internal-rc0 < Formula
2+
desc "Tetrate Service Bridge Command Line Interface 1.12.5-internal-rc0"
3+
homepage "https://docs.tetrate.io/service-bridge/reference/cli/guide/"
4+
version "1.12.5-internal-rc0"
5+
license "Commercial"
6+
conflicts_with "tctl", because: "Provides the same binary"
7+
8+
if Hardware::CPU.intel?
9+
url "https://binaries.dl.tetrate.io/public/raw/versions/darwin-amd64-1.12.5-internal-rc0/tctl"
10+
sha256 "8db2769f071660bf516cd270e95319194a78b2cc8625fbc414da69f2b8a1af79" # Intel
11+
else
12+
url "https://binaries.dl.tetrate.io/public/raw/versions/darwin-arm64-1.12.5-internal-rc0/tctl"
13+
sha256 "acc868aab4e7db637e1fe65471522d4935d79d3d10d4d7656c39db3f8b02807c" # ARM
14+
end
15+
16+
def install
17+
bin.install "tctl" => "tctl-1.12.5-internal-rc0"
18+
bin.install_symlink "tctl-1.12.5-internal-rc0" => "tctl@1.12.5-internal-rc0"
19+
end
20+
21+
test do
22+
assert_match version.to_s, shell_output("\#{bin}/tctl@1.12.5-internal-rc0 version 2>&1")
23+
end
24+
end

Formula/tctl.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ class Tctl < Formula
44

55
desc "Tetrate Service Bridge Command Line Interface"
66
homepage "https://docs.tetrate.io/service-bridge/reference/cli/guide/"
7-
version "1.12.4"
7+
version "1.12.5-internal-rc0"
88
license "Commercial"
99

1010
if Hardware::CPU.intel?
1111
url "https://binaries.dl.tetrate.io/public/raw/versions/darwin-amd64-#{version}/tctl"
12-
sha256 "0ec0636c2633fb24d7a829a6a444c7e3ec82c82f80cb4633b0216955d7912bfe" # Intel
12+
sha256 "8db2769f071660bf516cd270e95319194a78b2cc8625fbc414da69f2b8a1af79" # Intel
1313
else
1414
url "https://binaries.dl.tetrate.io/public/raw/versions/darwin-arm64-#{version}/tctl"
15-
sha256 "ca03442c75e6c7c166c16d7288e2856432647a6c278b8932772aa2a280f72f28" # ARM
15+
sha256 "acc868aab4e7db637e1fe65471522d4935d79d3d10d4d7656c39db3f8b02807c" # ARM
1616
end
1717

1818
def install

0 commit comments

Comments
 (0)