Skip to content

Commit a1072cf

Browse files
committed
validate: Alphabetize arch entries for Linux
So folks adding new mips* entries don't have to agonize over where to put them ;). Signed-off-by: W. Trevor King <[email protected]>
1 parent 69b94fd commit a1072cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validate/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func (v *Validator) CheckPlatform() (msgs []string) {
158158
"darwin": {"386", "amd64", "arm", "arm64"},
159159
"dragonfly": {"amd64"},
160160
"freebsd": {"386", "amd64", "arm"},
161-
"linux": {"386", "amd64", "arm", "arm64", "mips", "mipsle", "mips64", "mips64le", "ppc64", "ppc64le", "s390x"},
161+
"linux": {"386", "amd64", "arm", "arm64", "mips", "mips64", "mips64le", "mipsle", "ppc64", "ppc64le", "s390x"},
162162
"netbsd": {"386", "amd64", "arm"},
163163
"openbsd": {"386", "amd64", "arm"},
164164
"plan9": {"386", "amd64"},

0 commit comments

Comments
 (0)