]> Cypherpunks repositories - gostls13.git/commitdiff
builder: use go-build.appspot.com instead of godashboard by default
authorAndrew Gerrand <adg@golang.org>
Tue, 20 Dec 2011 21:28:54 +0000 (08:28 +1100)
committerAndrew Gerrand <adg@golang.org>
Tue, 20 Dec 2011 21:28:54 +0000 (08:28 +1100)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5489097

misc/dashboard/builder/main.go

index 85bbe9686e5fd9410612f9598bfc23c70ab6551c..6e571ad35c02fcfc27de129a5e12353510a2bc21 100644 (file)
@@ -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/)")