-
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 terraform-roulette version v0.0.8
- Loading branch information
1 parent
c4ea7b4
commit f6361a6
Showing
1 changed file
with
51 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# typed: false | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by GoReleaser. DO NOT EDIT. | ||
class TerraformRoulette < Formula | ||
desc "Terraform CLI if it was inspired by roulette" | ||
homepage "https://github.com/lbennett-stacki/terraform-roulette" | ||
version "0.0.8" | ||
license "MIT" | ||
|
||
depends_on "go" | ||
depends_on "terraform" | ||
|
||
on_macos do | ||
if Hardware::CPU.intel? | ||
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Darwin_x86_64.tar.gz" | ||
sha256 "6ae902935b1c05f6bafb678ddd86ae94fd48143cdb21887b96011adf1aa70326" | ||
|
||
def install | ||
bin.install "terraform-roulette" | ||
end | ||
end | ||
if Hardware::CPU.arm? | ||
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Darwin_arm64.tar.gz" | ||
sha256 "025ec2101a192a71c2487a67ce42534be2a062508db3413278eb1e06fb784da6" | ||
|
||
def install | ||
bin.install "terraform-roulette" | ||
end | ||
end | ||
end | ||
|
||
on_linux do | ||
if Hardware::CPU.intel? | ||
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Linux_x86_64.tar.gz" | ||
sha256 "efcf078363f49ad9fe5b3cc03bcd8ecf99b5ff578e6ffbf1683fb1a67cc0db82" | ||
|
||
def install | ||
bin.install "terraform-roulette" | ||
end | ||
end | ||
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit? | ||
url "https://github.com/lbennett-stacki/terraform-roulette/releases/download/v0.0.8/terraform-roulette_Linux_arm64.tar.gz" | ||
sha256 "6e1ce964cd69a62852987690a2c57bf790b7f94c357de723f581063b8a186340" | ||
|
||
def install | ||
bin.install "terraform-roulette" | ||
end | ||
end | ||
end | ||
end |