Add note to run dep ensure prior to go build. (#124)

We have example commands for building our go components locally, but we
did not mention a prerequisite step of getting all dependencies.

Add note to run `dep ensure && dep prune`.

Signed-off-by: Andrew Seigner <andrew@sig.gy>
This commit is contained in:
Andrew Seigner 2018-01-09 11:04:39 -08:00 committed by GitHub
parent b1831cd415
commit 0ee38e46f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,9 @@ components onto Minikube.
This setup assumes working Go and Minikube environments.
```bash
# ensure all go dependencies are in vendor
dep ensure && dep prune
# build and install conduit cli locally
go build -o $GOPATH/bin/conduit ./cli