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

Commit 77d8fe4

Browse files
authored
Remove darwin/386 from supported platforms
[Go no longer supports darwin/386 (MacOS 32-bit apps), as of Go 1.15][1] [1]: golang/go#37610
1 parent 4232a16 commit 77d8fe4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build/make.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,7 @@ var verbose = flag.Bool("verbose", false, "Print verbose details")
262262

263263
var (
264264
platformEnvs = []map[string]string{ //nolint:gochecknoglobals
265-
map[string]string{GOARCH: X86, GOOS: DARWIN, CGO_ENABLED: "0"}, //nolint:gofmt
266-
map[string]string{GOARCH: X86_64, GOOS: DARWIN, CGO_ENABLED: "0"},
265+
map[string]string{GOARCH: X86_64, GOOS: DARWIN, CGO_ENABLED: "0"}, //nolint:gofmt
267266
map[string]string{GOARCH: X86, GOOS: LINUX, CGO_ENABLED: "0"},
268267
map[string]string{GOARCH: X86_64, GOOS: LINUX, CGO_ENABLED: "0"},
269268
map[string]string{GOARCH: X86, GOOS: WINDOWS, CGO_ENABLED: "0"},

0 commit comments

Comments
 (0)