summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2011-12-21 08:28:54 +1100
committerAndrew Gerrand <adg@golang.org>2011-12-21 08:28:54 +1100
commit0ffde7153c263f5337696397bcac8131d632ba06 (patch)
tree5b0a7bb9853d9f0a374dc6603f397e55ab1a58c5 /misc
parent477a7da9194a44e05fffd044b957b11624e6912c (diff)
downloadgo-0ffde7153c263f5337696397bcac8131d632ba06.tar.gz
builder: use go-build.appspot.com instead of godashboard by default
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5489097
Diffstat (limited to 'misc')
-rw-r--r--misc/dashboard/builder/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go
index 85bbe9686..6e571ad35 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/)")