-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.44 KB
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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class DiveCliATv0014Beta < Formula
desc "CLI for Dive Package"
homepage "https://hugobyte.com"
version "0.0.14-beta"
license "Apache 2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.14-beta/dive-cli_v0.0.14-beta_darwin_amd64.tar.gz"
sha256 "2b93834b8f677c28ccd058bc87281a6bf7254779b07b6e4daa78a78795e57097"
def install
bin.install "dive"
end
end
if Hardware::CPU.arm?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.14-beta/dive-cli_v0.0.14-beta_darwin_arm64.tar.gz"
sha256 "589b87c005a8d607b3cc000db351875e8fbae99b597127d247e03b3eed37b8f2"
def install
bin.install "dive"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.14-beta/dive-cli_v0.0.14-beta_linux_arm64.tar.gz"
sha256 "a9008cb3e34000e042f902d434cd285ab9787687c6628c9aad40aee2e874dda3"
def install
bin.install "dive"
end
end
if Hardware::CPU.intel?
url "https://github.com/HugoByte/DIVE/releases/download/v0.0.14-beta/dive-cli_v0.0.14-beta_linux_amd64.tar.gz"
sha256 "0e3feaebe153309f318b5c02eb0a8ae62c488e67bac1aa815b3e8698eebaa685"
def install
bin.install "dive"
end
end
end
end