From 0ee38e46f8e7f4d5345edecf258b325933a28034 Mon Sep 17 00:00:00 2001 From: Andrew Seigner Date: Tue, 9 Jan 2018 11:04:39 -0800 Subject: [PATCH] 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 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 176553825..1e03b99cb 100644 --- a/README.md +++ b/README.md @@ -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