-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodigos.rb
57 lines (49 loc) · 1.54 KB
/
odigos.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Odigos < Formula
desc "Odigos CLI Utility"
homepage "https://odigos.io"
version "1.0.152"
on_macos do
on_intel do
url "https://github.com/odigos-io/odigos/releases/download/v1.0.152/cli_1.0.152_darwin_amd64.tar.gz"
sha256 "4cde92307a237c5eae321f9aa5dc85c47f8560d5cb7fc26b77dab0f05742d24b"
def install
bin.install "odigos"
end
end
on_arm do
url "https://github.com/odigos-io/odigos/releases/download/v1.0.152/cli_1.0.152_darwin_arm64.tar.gz"
sha256 "31573505de12505983e8b47e2c14688584989771b86ae489889202c569b46a2a"
def install
bin.install "odigos"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/odigos-io/odigos/releases/download/v1.0.152/cli_1.0.152_linux_amd64.tar.gz"
sha256 "ef6e14d840f44b2d4429aced699c4c2ddca61c0d64682b12a32c961e3ce7e155"
def install
bin.install "odigos"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/odigos-io/odigos/releases/download/v1.0.152/cli_1.0.152_linux_arm64.tar.gz"
sha256 "8307aed617dbd85eed3d7cef1a087e124f9b35bc83b4edbe81845078f267db1c"
def install
bin.install "odigos"
end
end
end
end
def caveats
<<~EOS
Thanks for installing Odigos CLI! Please run `odigos install` to install Odigos in your Kubernetes cluster.
EOS
end
end