Remove helm vendored dependencies from charts

pull/543/head
Caleb Bron 2020-08-13 12:22:39 -07:00
parent 7e532ef2fe
commit cb3b2acebd
3 changed files with 10 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
/packages/**/charts-original
/packages/*/charts/charts/*.tgz
/.idea
.DS_Store
requirements.lock

View File

@ -7,4 +7,12 @@ for f in packages/*; do
rm -rf ${f}/charts-crd
fi
fi
done
done
for f in packages/*; do
if [[ -z $CHART || $CHART == $(basename -- ${f}) ]]; then
if [ -d "${f}/charts/charts" ]; then
rm -f ${f}/charts/charts/*.tgz
fi
fi
done