Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Brew formula update for tenv version v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Jan 23, 2024
1 parent 41f6a4f commit 77cefa0
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions Formula/tenv.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class Tenv < Formula
desc "OpenTofu and Terraform version manager (inspired by tofuenv, written in Go)"
homepage "https://github.com/tofuutils/tenv"
version "1.0.4"
license "Apache-2.0"

on_macos do
if Hardware::CPU.arm?
url "https://github.com/tofuutils/tenv/releases/download/v1.0.4/tenv_1.0.4_darwin_arm64.zip"
sha256 "47bfbd7429c9a4063811d9d3c4dd9d68fafe970b12a08111bf5af12158519e15"

def install
bin.install "tenv"
bin.install "terraform"
bin.install "tofu"
end
end
if Hardware::CPU.intel?
url "https://github.com/tofuutils/tenv/releases/download/v1.0.4/tenv_1.0.4_darwin_amd64.zip"
sha256 "a528b8d5516a8aa56070eaa111ed0882eeb18eb59445b4711f2683963a6f7b05"

def install
bin.install "tenv"
bin.install "terraform"
bin.install "tofu"
end
end
end

on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/tofuutils/tenv/releases/download/v1.0.4/tenv_1.0.4_linux_arm64.zip"
sha256 "1ab98699db5a613f4ddfdbb5f96a9974fe0fe65222bb0152c741f5cb092602d6"

def install
bin.install "tenv"
bin.install "terraform"
bin.install "tofu"
end
end
if Hardware::CPU.arm? && !Hardware::CPU.is_64_bit?
url "https://github.com/tofuutils/tenv/releases/download/v1.0.4/tenv_1.0.4_linux_arm.zip"
sha256 "3a7a9d9996c24effe5dcb412fbbd1b959bcac84f6567991420cd42e3d16032a7"

def install
bin.install "tenv"
bin.install "terraform"
bin.install "tofu"
end
end
if Hardware::CPU.intel?
url "https://github.com/tofuutils/tenv/releases/download/v1.0.4/tenv_1.0.4_linux_amd64.zip"
sha256 "f22fafdb7f2aac7450eb68115bd3ca14aa1df091a25107be7c9fac585e769640"

def install
bin.install "tenv"
bin.install "terraform"
bin.install "tofu"
end
end
end
end

0 comments on commit 77cefa0

Please sign in to comment.