1
0
mirror of https://github.com/golang/go synced 2024-09-24 07:10:12 -06:00

builder: use go-build.appspot.com instead of godashboard by default

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5489097
This commit is contained in:
Andrew Gerrand 2011-12-21 08:28:54 +11:00
parent 82a6a4f39e
commit 8720105776

View 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/)")