1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix: missing equal sign in environment variable

closes #5241
This commit is contained in:
Carlos Alexandro Becker 2024-11-04 12:35:50 -03:00
parent efb4bd41f1
commit a8315bca8f
No known key found for this signature in database

View File

@ -249,7 +249,7 @@ func (*Builder) Build(ctx *context.Context, build config.Build, options api.Opti
"GOMIPS="+options.Gomips,
"GOMIPS64="+options.Gomips,
"GOPPC64="+options.Goppc64,
"GORISCV64"+options.Goriscv64,
"GORISCV64="+options.Goriscv64,
)
if v := os.Getenv("GOCACHEPROG"); v != "" {