Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Remove darwin/386 from supported platforms
Browse files Browse the repository at this point in the history
[Go no longer supports darwin/386 (MacOS 32-bit apps), as of Go 1.15][1]

[1]: golang/go#37610
  • Loading branch information
johnboyes authored Jan 16, 2021
1 parent 4232a16 commit 77d8fe4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build/make.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,7 @@ var verbose = flag.Bool("verbose", false, "Print verbose details")

var (
platformEnvs = []map[string]string{ //nolint:gochecknoglobals
map[string]string{GOARCH: X86, GOOS: DARWIN, CGO_ENABLED: "0"}, //nolint:gofmt
map[string]string{GOARCH: X86_64, GOOS: DARWIN, CGO_ENABLED: "0"},
map[string]string{GOARCH: X86_64, GOOS: DARWIN, CGO_ENABLED: "0"}, //nolint:gofmt
map[string]string{GOARCH: X86, GOOS: LINUX, CGO_ENABLED: "0"},
map[string]string{GOARCH: X86_64, GOOS: LINUX, CGO_ENABLED: "0"},
map[string]string{GOARCH: X86, GOOS: WINDOWS, CGO_ENABLED: "0"},
Expand Down

0 comments on commit 77d8fe4

Please sign in to comment.