1
0
mirror of https://github.com/golang/go synced 2024-11-26 02:37:58 -07:00

builder: label the race builder as "race"

R=golang-dev, adg, dave, rsc, minux.ma, dvyukov
CC=golang-dev
https://golang.org/cl/6648043
This commit is contained in:
Brad Fitzpatrick 2012-10-15 20:30:41 -07:00
parent 15970c8d6d
commit 08d66439b4

View File

@ -211,6 +211,9 @@ func builderArch(s string) string {
// builderArchShort returns a short arch tag for a builder string
func builderArchShort(s string) string {
if s == "linux-amd64-race" {
return "race"
}
arch := builderArch(s)
switch arch {
case "amd64":