]> Cypherpunks repositories - gostls13.git/commit
cmd/go: introduce the GOVERSION env variable
authorDaniel Martí <mvdan@mvdan.cc>
Tue, 27 Oct 2020 18:12:03 +0000 (18:12 +0000)
committerDaniel Martí <mvdan@mvdan.cc>
Tue, 10 Nov 2020 18:33:37 +0000 (18:33 +0000)
commitb2ef159db237ba09278704ec2970f6ae41f130b1
tree0e67f2e9bfa0a68dd125e2e015cff20d83466f7f
parent1948c00b6e49b4481ab1378247020786db1b7129
cmd/go: introduce the GOVERSION env variable

This is an extra variable available via 'go env', but not read from the
user's environment. It corresponds to the same string that
runtime.Version returns, assuming a program is built by the same version
of Go.

It's similar to the output of 'go version', but without the "go version"
prefix nor the "$GOOS/$GOARCH" suffix.

The main use case here is tools, which often use 'go env' to query basic
information about the installed Go tree. Its version was one missing
piece of information, which required an extra call to 'go version'
before this change.

Fixes #41116.

Change-Id: I5c9d8c2ba856c816c9f4c462ba73c907b3441445
Reviewed-on: https://go-review.googlesource.com/c/go/+/265637
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Reviewed-by: Russ Cox <rsc@golang.org>
Trust: Jay Conrod <jayconrod@google.com>
Trust: Daniel Martí <mvdan@mvdan.cc>
src/cmd/go/alldocs.go
src/cmd/go/go_test.go
src/cmd/go/internal/envcmd/env.go
src/cmd/go/internal/help/helpdoc.go
src/cmd/go/testdata/script/env_write.txt