diff options
author | Russ Cox <rsc@golang.org> | 2013-09-11 14:35:08 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2013-09-11 14:35:08 -0400 |
commit | 34c8581d387ceb714d8a3a0cd2b795ccebdb4aa6 (patch) | |
tree | 48b647c7ecfa1edab0b5dcdb1d9a18f7be12d395 /src/cmd/api | |
parent | dd83d171b9e5533f7b0abc9ef5f8b6cf7f22ef83 (diff) | |
download | go-34c8581d387ceb714d8a3a0cd2b795ccebdb4aa6.tar.gz |
undo CL 13632053 / dc7bfe0f022d
It was never going to last.
??? original CL description
cmd/api: break the builds
There is some question about whether the api tool is
running on Windows (see issue 6124), and now I'm
starting to question whether it runs on any of the builders,
since both darwin/amd64 and linux/amd64 are crashing for me
in the api tool due to a recent cgo-related change, and yet
the dashboard is happy.
If the dashboard is still happy after this CL, we have a problem.
Update issue 6124
TBR=golang-dev
CC=golang-dev
https://codereview.appspot.com/13632053
???
TBR=golang-dev
CC=golang-dev
https://codereview.appspot.com/13474045
Diffstat (limited to 'src/cmd/api')
-rw-r--r-- | src/cmd/api/goapi.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/api/goapi.go b/src/cmd/api/goapi.go index 320474368..7102e9d40 100644 --- a/src/cmd/api/goapi.go +++ b/src/cmd/api/goapi.go @@ -110,8 +110,6 @@ func setContexts() { func main() { flag.Parse() - panic("yes, the api checks are really running") - if !strings.Contains(runtime.Version(), "weekly") && !strings.Contains(runtime.Version(), "devel") { if *nextFile != "" { fmt.Printf("Go version is %q, ignoring -next %s\n", runtime.Version(), *nextFile) |