Merge pull request #78798 from distortedsignal/default-use-mod

Force using Go Modules in README.md
This commit is contained in:
Kubernetes Prow Robot 2019-06-22 16:26:12 -07:00 committed by GitHub
commit 6bba811f5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ This is an example of how to build a kubectl plugin using the same set of tools
```sh
# assumes you have a working KUBECONFIG
$ go build cmd/kubectl-ns.go
$ GO111MODULE="on" go build cmd/kubectl-ns.go
# place the built binary somewhere in your PATH
$ cp ./kubectl-ns /usr/local/bin