diff options
| author | Bryan C. Mills <bcmills@google.com> | 2019-06-11 11:49:09 -0400 |
|---|---|---|
| committer | Bryan C. Mills <bcmills@google.com> | 2019-06-11 17:54:27 +0000 |
| commit | 9f765667d6aca3df70a55348a2f1da16ca0cbca8 (patch) | |
| tree | 476975500ec19e72f415959830f35b30dbf44c91 /src/cmd/go.mod | |
| parent | 34a43d7c1de171691546e95aca503ece4602d82b (diff) | |
| download | go-9f765667d6aca3df70a55348a2f1da16ca0cbca8.tar.xz | |
cmd/vet: include the errors.As check from upstream x/tools
This change revendors golang.org/x/tools to include the check and
modifies cmd/vet to add it to the command.
CL 179977 will enable the check by default for 'go test'.
Commands run (starting in GOROOT/src):
cd cmd
emacs vet/main.go
go get -u=patch golang.org/x/tools/go/analysis/passes/errorsas@latest
go mod tidy
go mod vendor
cd ..
./make.bash
go test all
Updates #31213
Change-Id: Ic2ba9bd2d31c4c5fd9e7c42ca14e8dc38520c93b
Reviewed-on: https://go-review.googlesource.com/c/go/+/181717
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Diffstat (limited to 'src/cmd/go.mod')
| -rw-r--r-- | src/cmd/go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go.mod b/src/cmd/go.mod index 86e3281496..3d9b4a8d24 100644 --- a/src/cmd/go.mod +++ b/src/cmd/go.mod @@ -8,5 +8,5 @@ require ( golang.org/x/arch v0.0.0-20181203225421-5a4828bb7045 golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c golang.org/x/sys v0.0.0-20190502175342-a43fa875dd82 // indirect - golang.org/x/tools v0.0.0-20190602112858-2de7f9bf822c + golang.org/x/tools v0.0.0-20190611154301-25a4f137592f ) |
