2018-08-06 19:46:28 +03:00
|
|
|
# Versioned Go Command (vgo)
|
2018-02-16 18:08:22 +03:00
|
|
|
|
2018-08-06 19:46:28 +03:00
|
|
|
This repository holds a standalone implementation of a version-aware `go` command,
|
|
|
|
allowing users with a Go 1.10 toolchain to use the new Go 1.11 module support.
|
2018-02-16 18:08:22 +03:00
|
|
|
|
2018-08-06 19:46:28 +03:00
|
|
|
The code in this repo is auto-generated from and should behave exactly like
|
|
|
|
the Go 1.11 `go` command, with two changes:
|
|
|
|
|
|
|
|
- It behaves as if the `GO111MODULE` variable defaults to `on`.
|
|
|
|
- When using a Go 1.10 toolchain, `go` `vet` during `go` `test` is disabled.
|
2018-02-16 18:08:22 +03:00
|
|
|
|
|
|
|
## Download/Install
|
|
|
|
|
|
|
|
Use `go get -u golang.org/x/vgo`.
|
|
|
|
|
|
|
|
You can also manually
|
|
|
|
git clone the repository to `$GOPATH/src/golang.org/x/vgo`.
|
|
|
|
|
|
|
|
## Report Issues / Send Patches
|
|
|
|
|
|
|
|
See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
|
|
|
|
|
|
Please file bugs in the main Go issue tracker,
|
|
|
|
[golang.org/issue](https://golang.org/issue),
|
2018-08-06 19:46:28 +03:00
|
|
|
and put the prefix `x/vgo:` in the issue title,
|
|
|
|
or `cmd/go:` if you have confirmed that the same
|
|
|
|
bug is present in the Go 1.11 module support.
|
2018-02-16 18:08:22 +03:00
|
|
|
|
|
|
|
Thank you.
|