Skip to content

Commit 183bdc8

Browse files
committed
prioritize the builds i typically care most
1 parent feda7d6 commit 183bdc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ func mainBuild() {
4848
errored := false
4949

5050
if *BuildAll {
51-
for _, buildos := range []string{"darwin", "freebsd", "linux", "windows"} {
52-
for _, buildarch := range []string{"386", "amd64"} {
51+
for _, buildos := range []string{"linux", "windows", "darwin", "freebsd"} {
52+
for _, buildarch := range []string{"amd64", "386"} {
5353
if err := build(buildos, buildarch, buildMatrix); err != nil {
5454
errored = true
5555
}

0 commit comments

Comments
 (0)