app-admin/terraform: drop -mod=vendor switch from the build

This isn't needed since the go version in go.mod is at least 1.14.
See https://go.dev/ref/mod#build-commands

Signed-off-by: William Hubbs <williamh@gentoo.org>
This commit is contained in:
William Hubbs 2025-10-31 12:32:46 -05:00
parent 8ccabadd71
commit e399101f25
No known key found for this signature in database
GPG Key ID: DFDDE1809F0F9344

View File

@ -24,7 +24,7 @@ src_compile() {
local go_ldflags=(
-X github.com/hashicorp/terraform/version.dev=no
)
ego build -mod=vendor -ldflags "${go_ldflags[*]}" -o bin/${PN} .
ego build -ldflags "${go_ldflags[*]}" -o bin/${PN} .
}
src_install() {