From dacb01c82a7d0a437aa174e953c1fd60a4fdc912 Mon Sep 17 00:00:00 2001 From: Bryan Strassner Date: Tue, 23 Oct 2018 11:25:16 -0500 Subject: [PATCH] Use supplied HELM variable for dep up in Makefile Updates the helm dep up command to use the $(HELM) variable instead of the locally istalled helm for the host machine. This bring this line of code in alignment with the other uses of helm in the same Makefile. Change-Id: I91bfdceedd3bac0ac49daf5b9410c05e0e840168 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 452f462aa..270bd7e05 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ $(CHARTS): init-%: if [ -f $*/Makefile ]; then make -C $*; fi - if [ -f $*/requirements.yaml ]; then helm dep up $*; fi + if [ -f $*/requirements.yaml ]; then $(HELM) dep up $*; fi lint-%: init-% if [ -d $* ]; then $(HELM) lint $*; fi