1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-05 13:15:26 +02:00

fix: build 386

This commit is contained in:
Carlos Alexandro Becker 2024-10-15 15:28:17 -03:00
parent 24c6060050
commit 66db8c0857
No known key found for this signature in database

View File

@ -180,7 +180,7 @@ func buildOptionsForTarget(ctx *context.Context, build config.Build, target stri
if strings.HasPrefix(goarch, "amd64") {
buildOpts.Goamd64 = parts[2]
} else if goarch == "386" {
buildOpts.Gomips = parts[2]
buildOpts.Go386 = parts[2]
} else if strings.HasPrefix(goarch, "arm64") {
buildOpts.Goarm64 = parts[2]
} else if strings.HasPrefix(goarch, "arm") {