mirror of https://github.com/linkerd/linkerd2.git
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:
parent
b1831cd415
commit
0ee38e46f8
|
@ -48,6 +48,9 @@ components onto Minikube.
|
||||||
This setup assumes working Go and Minikube environments.
|
This setup assumes working Go and Minikube environments.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# ensure all go dependencies are in vendor
|
||||||
|
dep ensure && dep prune
|
||||||
|
|
||||||
# build and install conduit cli locally
|
# build and install conduit cli locally
|
||||||
go build -o $GOPATH/bin/conduit ./cli
|
go build -o $GOPATH/bin/conduit ./cli
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue