From e07ff88f1df8d998a6df773322b6dad5a8dc324a Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Wed, 24 Apr 2019 13:34:26 -0700 Subject: [PATCH] add bootstrap target when running make/make all Signed-off-by: Tariq Ibrahim --- Makefile | 2 +- docs/developers.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 719fd5f03..b1de1dea2 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ BINARIES := helm tiller SHELL=/usr/bin/env bash .PHONY: all -all: build +all: bootstrap build .PHONY: build build: diff --git a/docs/developers.md b/docs/developers.md index 70203b2d0..4275be941 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -16,7 +16,7 @@ Helm and Tiller. We use Make to build our programs. The simplest way to get started is: ```console -$ make bootstrap build +$ make ``` NOTE: This will fail if not running from the path `$GOPATH/src/k8s.io/helm`. The