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
This commit is contained in:
Bryan Strassner 2018-10-23 11:25:16 -05:00
parent a0d58decff
commit dacb01c82a
1 changed files with 1 additions and 1 deletions

View File

@ -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