-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go get -> go install in build instructions
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,7 @@ For local builds these can be set to anything. | |
For image builds these determine the location of your image. | ||
For GCE the registry should be gcr.io and PROJECT_ID should be the project you | ||
want to use the images in. | ||
Please ensure the go bin directory (usually `~/go/bin`) is in your `PATH`. | ||
|
||
### Mockgen | ||
|
||
|
@@ -70,11 +71,11 @@ Proto definitions are compiled with `protoc`. Please ensure you have protoc inst | |
|
||
Currently, we are using [email protected] | ||
|
||
`go get google.golang.org/protobuf/cmd/[email protected]` | ||
`go install google.golang.org/protobuf/cmd/[email protected]` | ||
|
||
Currently, we are using [email protected] | ||
|
||
`go get google.golang.org/grpc/cmd/[email protected]` | ||
`go install google.golang.org/grpc/cmd/[email protected]` | ||
|
||
### Local builds | ||
|
||
|