tfenv: install share directory for gpg verification
tfenv has logic for verifying the Terraform releases that it downloads with gpg or gpgv. When gpgv is used, tfenv tries to verify the download's signature based on a key for Hashicorp that is bundled with the tfenv release in the `share` directory - but the homebrew formula is not installing that directory. Closes #42396. Signed-off-by: Chongyu Zhu <i@lembacon.com>
This commit is contained in:
parent
c52b21b165
commit
6f7be63a8a
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ class Tfenv < Formula
|
|||
conflicts_with "terraform", :because => "tfenv symlinks terraform binaries"
|
||||
|
||||
def install
|
||||
prefix.install ["bin", "libexec"]
|
||||
prefix.install ["bin", "libexec", "share"]
|
||||
end
|
||||
|
||||
test do
|
||||
|
|
Loading…
Reference in a new issue