]> Cypherpunks repositories - gostls13.git/commitdiff
misc/dist: label 386 and amd64 as "32-bit x86" and "64-bit x86"
authorAndrew Gerrand <adg@golang.org>
Thu, 5 Apr 2012 01:16:37 +0000 (11:16 +1000)
committerAndrew Gerrand <adg@golang.org>
Thu, 5 Apr 2012 01:16:37 +0000 (11:16 +1000)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5986043

misc/dist/bindist.go

index ce50a591f9f7963632d28f4079796c2798cc15f6..b53395627970295e13c2a7fcb8c5211db3d4c68a 100644 (file)
@@ -394,9 +394,9 @@ func (b *Build) Upload(version string, filename string) error {
        os_, arch := b.OS, b.Arch
        switch b.Arch {
        case "386":
-               arch = "32-bit"
+               arch = "x86 32-bit"
        case "amd64":
-               arch = "64-bit"
+               arch = "x86 64-bit"
        }
        if arch != "" {
                labels = append(labels, "Arch-"+b.Arch)