Skip to content

Commit

Permalink
update cli version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaytu Developer committed Apr 27, 2024
1 parent a30b46b commit e377d4c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions kaytu.rb
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
class Kaytu < Formula
desc "CLI application for Kaytu"
homepage "https://github.com/kaytu-io/cli-program"
version "0.3.38"
version "0.3.39"
license "MIT"

if OS.mac? && Hardware::CPU.intel?
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.38/kaytu_0.3.38_darwin_amd64.tar.gz"
sha256 "9798b3c7ba06f74cdb2262401b62496aafbe5a997918cecc564e9181aa8a5b6a"
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.39/kaytu_0.3.39_darwin_amd64.tar.gz"
sha256 "ceb18404de7547de874be2581ea019a3f45c88b4bd190f39c9cc9d88629898b3"
def install
bin.install "kaytu" => "kaytu"
end
end

if OS.mac? && Hardware::CPU.arm?
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.38/kaytu_0.3.38_darwin_arm64.tar.gz"
sha256 "c6fa3b889813fd88907f7f40660c84702b916eef39e905081c3a0489fdf33064"
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.39/kaytu_0.3.39_darwin_arm64.tar.gz"
sha256 "f887e4c1cb84432e48aeda4acf5e37a848604755f55211a1f0df5a20db4257e5"
def install
bin.install "kaytu" => "kaytu"
end
end

if OS.linux? && Hardware::CPU.arm?
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.38/kaytu_0.3.38_linux_arm64.tar.gz"
sha256 "4b4313cb910dd49b1754a591beddf0546947b114d8e07246163bce0ebd82d251"
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.39/kaytu_0.3.39_linux_arm64.tar.gz"
sha256 "deb7f5a6f10bc93b47ce067eb418e8f13eaacaf61044df37e46867e98fbf46b0"
def install
bin.install "kaytu" => "kaytu"
end
end

if OS.linux? && Hardware::CPU.intel?
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.38/kaytu_0.3.38_linux_amd64.tar.gz"
sha256 "16676475338b45744b2c50c6d5405c7bc82ed1a49c34d997956494b3284d9126"
url "https://github.com/kaytu-io/kaytu/releases/download/v0.3.39/kaytu_0.3.39_linux_amd64.tar.gz"
sha256 "27e3121b475e35b83f50d37a40f5fbc70c62292f2a640b4bee369f2f7fbd77a3"
def install
bin.install "kaytu" => "kaytu"
end
Expand Down

0 comments on commit e377d4c

Please sign in to comment.