Remove packaged charts on 'make clean'

Change-Id: I2def1dbfa0e0deb4c63aab6ae3bcf788628c773f
This commit is contained in:
Chris Wedgwood 2017-09-07 15:22:37 +00:00
parent d2b4a35e75
commit da6bbefb86
1 changed files with 4 additions and 3 deletions

View File

@ -37,8 +37,9 @@ build-%: lint-%
clean:
@echo "Removed .b64, _partials.tpl, and _globals.tpl files"
rm -rf helm-toolkit/secrets/*.b64
rm -rf */templates/_partials.tpl
rm -rf */templates/_globals.tpl
rm -f helm-toolkit/secrets/*.b64
rm -f */templates/_partials.tpl
rm -f */templates/_globals.tpl
rm -f *tgz */charts/*tgz
.PHONY: $(EXCLUDES) $(CHARTS)