[Fix] Makefile default target failed

- Fix the default target

Change-Id: I2d3d19f8cce0ca1b729ff74d34a05a412dabb6bc
This commit is contained in:
Scott Hussey 2018-03-29 16:32:45 -05:00
parent f1fbfa1d5e
commit 4f141f2c22
2 changed files with 5 additions and 4 deletions

View File

@ -16,12 +16,12 @@ HELM := helm
TASK := build
EXCLUDES := helm-toolkit docs tests tools logs
CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.)))
CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.)))
CHART := divingbell
all: $(CHARTS)
all: $(CHART)
$(CHARTS):
$(CHART):
@echo
@echo "===== Processing [$@] chart ====="
@make $(TASK)-$@

View File

@ -56,8 +56,9 @@ git clone --depth 1 $HTK_REPO || true
pushd openstack-helm/$HTK_PATH
git pull
helm_serve
make helm-toolkit
helm_serve
popd && popd
for c in $DEP_UP_LIST
do