Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Brew formula update for cli version v0.83.5" #4

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions HomebrewFormula/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,24 @@
class Cli < Formula
desc "Package Replicated applications and manage releases, channels, customers and entitlements using a command-line interface."
homepage "https://docs.replicated.com/reference/replicated-cli-installing"
version "0.83.5"
version "0.83.4"

on_macos do
url "https://github.com/replicatedhq/replicated/releases/download/v0.83.5/replicated_0.83.5_darwin_all.tar.gz"
sha256 "ceffa0acdbb3c3c1b6dd93a5d4f7da1c9012290d646faa20f37ad381322dad00"
url "https://github.com/replicatedhq/replicated/releases/download/v0.83.4/replicated_0.83.4_darwin_all.tar.gz"
sha256 "e957f65e03467f3b0177d219bf77fd90618cbe26fad0d7a20bfe52578fc39c98"

def install
bin.install "replicated"
end
end

on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/replicatedhq/replicated/releases/download/v0.83.5/replicated_0.83.5_linux_amd64.tar.gz"
sha256 "cbc534365dd0dea0b818b20a65ca9acbba8f67031b59b8a46e5e4c22b54ff2ac"
if Hardware::CPU.intel?
url "https://github.com/replicatedhq/replicated/releases/download/v0.83.4/replicated_0.83.4_linux_amd64.tar.gz"
sha256 "b9ac5f88e53599016e8d4173a92bfbf983fd5b8ea1dca4987c761701e1ea8b6e"

def install
bin.install "replicated"
end
def install
bin.install "replicated"
end
end
end
Expand Down