diff options
author | Qi Zhao <toqizhao@gmail.com> | 2015-02-20 17:54:59 -0800 |
---|---|---|
committer | Qi Zhao <toqizhao@gmail.com> | 2015-02-20 17:54:59 -0800 |
commit | d314cd2e884dc3730c879e7a2b7e1c84538cdeaa (patch) | |
tree | 784db773fb12dd199513b0ff0d0a239aa3ca88ef /go/README.md | |
parent | 1b752e71e283527c0b050692ff4169e7ae3a4957 (diff) |
Improve README.md
Diffstat (limited to 'go/README.md')
-rw-r--r-- | go/README.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/go/README.md b/go/README.md index 2cab9092ae..bf5d6c8cf4 100644 --- a/go/README.md +++ b/go/README.md @@ -8,8 +8,8 @@ PREREQUISITES - Requires that [GOPATH is set](https://golang.org/doc/code.html#GOPATH) ```sh $ go help gopath -$ # ensure the PATH contains $GOPATH/bin or $GOBIN -$ export PATH=PATH:<your/gopath/bin> +$ # ensure the PATH contains $GOPATH/bin +$ export PATH=$PATH:$GOPATH/bin ``` INSTALL @@ -43,8 +43,6 @@ OPTIONAL - Rebuilding the generated code 2 Install the protoc Go plugin. ```sh $ go get -a github.com/golang/protobuf/protoc-gen-go -$ # ensure the PATH contains $GOPATH/bin -$ export PATH=PATH:$GOPATH/bin $ $ # from this dir; invoke protoc $ protoc -I ../protos ../protos/helloworld.proto --go_out=plugins=grpc:. |