From 8654962defcd6c404cc98c455f3a4b278f57eb63 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Mon, 10 Apr 2017 12:31:08 -0700 Subject: [PATCH] Add note about gopath in developer docs Added a note that helm needs to be in a specific directory path in order for it to be compiled. --- docs/developers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/developers.md b/docs/developers.md index 59a29f060..4594e0c89 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -19,6 +19,8 @@ We use Make to build our programs. The simplest way to get started is: $ make bootstrap build ``` +NOTE: This will fail if not run from the path: `$GOPATH/src/k8s.io/helm`. + This will build both Helm and Tiller. `make bootstrap` will attempt to install certain tools if they are missing.