Force using Go Modules in README.md

Going through this README file, I was very confused when
this failed to compile by using the commands provided. I
think this change makes the intent of the README clearer.

Signed-off-by: Tom Kelley <distortedsignal@gmail.com>
This commit is contained in:
Tom Kelley 2019-06-07 11:13:40 -07:00
parent 78220fe380
commit df9d74ade7
No known key found for this signature in database
GPG Key ID: 70446F699B11988A

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