-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Brew formula update for spirlctl version spirlctl-v0.15.1-demo-4 (#4)
###### Automated with [GoReleaser](https://goreleaser.com)
- Loading branch information
Showing
1 changed file
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,51 @@ | ||
# typed: false | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by GoReleaser. DO NOT EDIT. | ||
class Spirlctl < Formula | ||
desc "SPIRL CLI" | ||
homepage "https://www.spirl.com/" | ||
version "0.15.1" | ||
version "0.17.0" | ||
|
||
on_macos do | ||
on_intel do | ||
# macOS amd64 | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.15.1/spirlctl-v0.15.1-darwin-amd64.tar.gz" | ||
sha256 "6fe01e2a45789d2ac2491e8293ee16cc8b45645be833db0f0c7feb278c5bb43e" | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.17.0/spirlctl-v0.17.0-darwin-amd64.tar.gz" | ||
sha256 "764fe2b63493ef8b75a9cfda30764e3c3cc0c82357e76dcba5950536ee1195d3" | ||
|
||
def install | ||
bin.install "spirlctl" | ||
end | ||
end | ||
on_arm do | ||
# macOS arm64 | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.15.1/spirlctl-v0.15.1-darwin-arm64.tar.gz" | ||
sha256 "1a630d5b1d3daee0519980d00092da4b158f45b36cccf34f12c0812600ba19a8" | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.17.0/spirlctl-v0.17.0-darwin-arm64.tar.gz" | ||
sha256 "34123010f8c73ff837b06b184ce48c4e5b100c92620dd6ca7674b937d523fdad" | ||
|
||
def install | ||
bin.install "spirlctl" | ||
end | ||
end | ||
end | ||
|
||
on_linux do | ||
on_intel do | ||
# Linux amd64 | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.15.1/spirlctl-v0.15.1-linux-amd64.tar.gz" | ||
sha256 "e8f746d4bd256976b63d1ce8aba7534c998fccd6ef534331ac910844701541f1" | ||
if Hardware::CPU.is_64_bit? | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.17.0/spirlctl-v0.17.0-linux-amd64.tar.gz" | ||
sha256 "0a951c9150f4ad77793a9589723151bbe3a198c76a221bca393d5ac9bdb2bbdd" | ||
|
||
def install | ||
bin.install "spirlctl" | ||
end | ||
end | ||
end | ||
on_arm do | ||
# Linux arm64 | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.15.1/spirlctl-v0.15.1-linux-arm64.tar.gz" | ||
sha256 "33e2f2aaf89c304996ff0c630cf55387b251aa06149370edf690952af8f2c50a" | ||
end | ||
end | ||
if Hardware::CPU.is_64_bit? | ||
url "https://spirl-releases.s3.us-west-2.amazonaws.com/spirlctl/v0.17.0/spirlctl-v0.17.0-linux-arm64.tar.gz" | ||
sha256 "fb293376b437265f5ec7986540bc7dfa9de08cd4ad02f131cf88ca33e0ddca04" | ||
|
||
def install | ||
bin.install "spirlctl" | ||
def install | ||
bin.install "spirlctl" | ||
end | ||
end | ||
end | ||
end | ||
end |