From 5b12940b09e7b831f4fca44bc4f6368ca7ad3261 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 21 Dec 2011 17:12:16 +1100 Subject: [PATCH] builder: set default builder host to build.golang.org R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5489099 --- misc/dashboard/builder/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go index 804fb3fe3a..dbb3ff694b 100644 --- a/misc/dashboard/builder/main.go +++ b/misc/dashboard/builder/main.go @@ -52,7 +52,7 @@ type Builder struct { var ( buildroot = flag.String("buildroot", path.Join(os.TempDir(), "gobuilder"), "Directory under which to build") commitFlag = flag.Bool("commit", false, "upload information about new commits") - dashboard = flag.String("dashboard", "go-build.appspot.com", "Go Dashboard Host") + dashboard = flag.String("dashboard", "build.golang.org", "Go Dashboard Host") buildRelease = flag.Bool("release", false, "Build and upload binary release archives") buildRevision = flag.String("rev", "", "Build specified revision and exit") buildCmd = flag.String("cmd", "./all.bash", "Build command (specify absolute or relative to go/src/)") -- 2.50.0