From 0cfa46d72567da46405ce1186527aa7d8c41468b Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Wed, 25 Nov 2020 10:26:26 +0100 Subject: [PATCH] Fix update-helm-repos.sh --- scripts/update-helm-repos.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/update-helm-repos.sh b/scripts/update-helm-repos.sh index 48efd0e..a33f624 100755 --- a/scripts/update-helm-repos.sh +++ b/scripts/update-helm-repos.sh @@ -10,9 +10,10 @@ repos=( "anchore=https://charts.anchore.io" ) -for i in $repos; do +for i in ${repos[@]}; do IFS="=" set $i helm repo add $1 $2 done +helm repo update