Skip to content

Commit 51696b6

Browse files
committed
Brew formula update for xiond version v15.0.1
1 parent 2038d04 commit 51696b6

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

Formula/xiond.rb

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
class Xiond < Formula
66
desc "Xiond is the Cosmos SDK based blockchain cli/daemon for the Xion Network."
77
homepage "https://xion.burnt.com/"
8-
version "18.0.0"
8+
version "15.0.1"
99
license "Apache2.0"
1010

1111
on_macos do
1212
if Hardware::CPU.intel?
13-
url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_darwin_amd64.zip"
14-
sha256 "bf8fa7743d7aab33396d9122ab3817224d41bbbcf410424c993b1d25911faee6"
13+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_darwin_amd64.tar.gz"
14+
sha256 "a3bb3c3e0e1221867f8ed2c81f0f4709c4a9b415e2e6df24c7b7fddbe358b607"
1515

1616
def install
1717
bin.install "xiond"
1818
end
1919
end
2020
if Hardware::CPU.arm?
21-
url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_darwin_arm64.zip"
22-
sha256 "1f8799dc21ff348ca71e25864e12b1b07c2d9be66359eab9c420887178403d9d"
21+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_darwin_arm64.tar.gz"
22+
sha256 "3b5a3422bcf7a703d23e6ede34ebe78ccc1e8e263fd43bfc70e7b02791ae98a0"
2323

2424
def install
2525
bin.install "xiond"
@@ -28,25 +28,23 @@ def install
2828
end
2929

3030
on_linux do
31-
if Hardware::CPU.intel?
32-
if Hardware::CPU.is_64_bit?
33-
url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_linux_amd64.zip"
34-
sha256 "361ff8194f0f2601fd8a0759eb218b27d62d236618ca7c623481c64ec7c85a8c"
35-
36-
def install
37-
bin.install "xiond"
38-
end
31+
if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?
32+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_linux_amd64.tar.gz"
33+
sha256 "d2a7313a0eb3f8c7a04528f8558a96d17e68c64ff153915ad03c3f8d900a14b4"
34+
def install
35+
bin.install "xiond"
3936
end
4037
end
41-
if Hardware::CPU.arm?
42-
if Hardware::CPU.is_64_bit?
43-
url "https://github.com/burnt-labs/xion/releases/download/v18.0.0/xiond_18.0.0_linux_arm64.zip"
44-
sha256 "1f49577bd44ea2a4072d88e6934e124d44594489b76d33922c4a8803db08303c"
45-
46-
def install
47-
bin.install "xiond"
48-
end
38+
if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?
39+
url "https://github.com/burnt-labs/xion/releases/download/v15.0.1/xiond_15.0.1_linux_arm64.tar.gz"
40+
sha256 "54551afc2e865d1e5dd641932df84e36a28be8a2969f9fc79bee1cbcec48fb56"
41+
def install
42+
bin.install "xiond"
4943
end
5044
end
5145
end
46+
47+
test do
48+
system "#{bin}/xiond version"
49+
end
5250
end

0 commit comments

Comments
 (0)