Merge "Use supplied HELM variable for dep up in Makefile"

This commit is contained in:
Zuul 2018-10-23 20:36:22 +00:00 committed by Gerrit Code Review
commit 5c446bb2d3

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