Skip to content

Commit

Permalink
Brew formula update for homebrew-tap version v0.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
The SaaS Company committed Sep 18, 2024
1 parent 6ccccdb commit f1ff7b9
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions Formula/saas.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class Saas < Formula
desc "Command-line interface for managing and interacting with The SaaS Company's cloud services, providing streamlined access to resources and operations."
homepage "https://thesaas.company.io/docs"
version "0.0.17"

on_macos do
on_intel do
url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Darwin_x86_64.tar.gz"
sha256 "558b6295ad94f31aeb47a9697d6bcf9eeaf0793822c35121eb945886409b3e2f"

def install
bin.install "saas"
end
end
on_arm do
url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Darwin_arm64.tar.gz"
sha256 "7e925951ba4e22d513831dde6b9ea7e87d66f891c370c37460f2f9abe4c27417"

def install
bin.install "saas"
end
end
end

on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Linux_x86_64.tar.gz"
sha256 "cb2f4289606c19507f5ccabbae162ab1374d7ca5ae278a8acc73ac9aaa43ef25"

def install
bin.install "saas"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/thesaas-company/homebrew-tap/releases/download/v0.0.17/homebrew-tap_Linux_arm64.tar.gz"
sha256 "db70d48df39cab8889e40e1b35b8733383b2f6c8d8706b254dbf1b4ce82bba8d"

def install
bin.install "saas"
end
end
end
end
end

0 comments on commit f1ff7b9

Please sign in to comment.