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:
parent
a0d58decff
commit
dacb01c82a
2
Makefile
2
Makefile
@ -32,7 +32,7 @@ $(CHARTS):
|
|||||||
|
|
||||||
init-%:
|
init-%:
|
||||||
if [ -f $*/Makefile ]; then make -C $*; fi
|
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-%
|
lint-%: init-%
|
||||||
if [ -d $* ]; then $(HELM) lint $*; fi
|
if [ -d $* ]; then $(HELM) lint $*; fi
|
||||||
|
Loading…
Reference in New Issue
Block a user