From: Andrew Gerrand Date: Tue, 20 Dec 2011 21:28:54 +0000 (+1100) Subject: builder: use go-build.appspot.com instead of godashboard by default X-Git-Tag: weekly.2011-12-22~89 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8720105776d9c1f2f7ff8bde070b70853afecb6d;p=gostls13.git builder: use go-build.appspot.com instead of godashboard by default R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5489097 --- diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go index 85bbe9686e..6e571ad35c 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", "godashboard.appspot.com", "Go Dashboard Host") + dashboard = flag.String("dashboard", "go-build.appspot.com", "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/)")