Fix update-helm-repos.sh

This commit is contained in:
Jonas Juselius
2020-11-25 10:26:26 +01:00
parent b6a63f42de
commit 0cfa46d725

View File

@@ -10,9 +10,10 @@ repos=(
"anchore=https://charts.anchore.io" "anchore=https://charts.anchore.io"
) )
for i in $repos; do for i in ${repos[@]}; do
IFS="=" IFS="="
set $i set $i
helm repo add $1 $2 helm repo add $1 $2
done done
helm repo update