aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/consul/components/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/consul/components/Makefile')
-rw-r--r--kubernetes/consul/components/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/consul/components/Makefile b/kubernetes/consul/components/Makefile
index e9159f32a9..8674687e7d 100644
--- a/kubernetes/consul/components/Makefile
+++ b/kubernetes/consul/components/Makefile
@@ -33,7 +33,7 @@ make-%:
@if [ -f $*/Makefile ]; then make -C $*; fi
dep-%: make-%
- @if [ -f $*/requirements.yaml ]; then $(HELM_BIN) dep up $*; fi
+ @if [ -f $*/Chart.yaml ]; then $(HELM_BIN) dep up $*; fi
lint-%: dep-%
@if [ -f $*/Chart.yaml ]; then $(HELM_BIN) lint $*; fi
@@ -44,7 +44,7 @@ package-%: lint-%
@$(HELM_BIN) repo index $(PACKAGE_DIR)
clean:
- @rm -f */requirements.lock
+ @rm -f */Chart.lock
@rm -f *tgz */charts/*tgz
@rm -rf $(PACKAGE_DIR)
%: