]> Cypherpunks repositories - gostls13.git/commit
cmd/go: disable tool version check during bootstrap go1.9beta1
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 14 Jun 2017 21:32:41 +0000 (21:32 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 14 Jun 2017 21:44:01 +0000 (21:44 +0000)
commit952ecbe0a27aadd184ca3e2c342beb464d6b1653
treef11d095e0243656c494f404286617ddd999bf318
parent8c4bec8fb7fb4f2ad1eb7ed027fac466244b0f4d
cmd/go: disable tool version check during bootstrap

The check that the go tool version matched the go compiler version was
too aggressive and didn't cover the bootstrapping case with make.bash.

We never noticed because we never had a VERSION file in place.

Repro:

$ echo "go1.9beta1" > $GOROOT/VERSION
$ cd $GOROOT/src
$ ./make.bash

No test, because x/build/cmd/release catches it.

Updates #19064
Fixes #20674

Change-Id: Ibdd7a92377f4cc77d71ed548f02d48bde6550f67
Reviewed-on: https://go-review.googlesource.com/45778
Reviewed-by: Chris Broadfoot <cbro@golang.org>
src/cmd/go/internal/work/build.go