homebrew-core/Formula/tfenv.rb
Isabell (Issy) Long 45f5cbcfa0
tfenv: update homepage and url
Closes #37799.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-03-12 16:06:23 +08:00

19 lines
523 B
Ruby

class Tfenv < Formula
desc "Terraform version manager inspired by rbenv"
homepage "https://github.com/tfutils/tfenv"
url "https://github.com/tfutils/tfenv/archive/v0.6.0.tar.gz"
sha256 "f2ca32ade0e90d6988106e85efaa548ed116cac1ded24f88dd19f479c6381e2e"
head "https://github.com/tfutils/tfenv.git"
bottle :unneeded
conflicts_with "terraform", :because => "tfenv symlinks terraform binaries"
def install
prefix.install ["bin", "libexec"]
end
test do
system bin/"tfenv", "list-remote"
end
end