diff options
author | Andrew Gerrand <adg@golang.org> | 2011-12-21 08:28:54 +1100 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2011-12-21 08:28:54 +1100 |
commit | 0ffde7153c263f5337696397bcac8131d632ba06 (patch) | |
tree | 5b0a7bb9853d9f0a374dc6603f397e55ab1a58c5 /misc | |
parent | 477a7da9194a44e05fffd044b957b11624e6912c (diff) | |
download | go-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.go | 2 |
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/)") |