From f2ae9b14e2b49e537cf87a4409912377f00bc471 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tom=C3=A1=C5=A1=20Levora?= Date: Wed, 30 Oct 2019 15:01:21 +0100 Subject: [PATCH] Fixing helm repo add missing second argument bug MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixing bug in creating new helm repository when the HELM_REPO was passed as one argument instead of two Issue-ID: OOM-2159 Change-Id: Id8aabad7d8e59aa4fb2eef01cfff28e3b7ab1259 Signed-off-by: Tomáš Levora --- build/creating_data/docker-images-collector.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/creating_data/docker-images-collector.sh b/build/creating_data/docker-images-collector.sh index 6761c328..9a5baea7 100755 --- a/build/creating_data/docker-images-collector.sh +++ b/build/creating_data/docker-images-collector.sh @@ -101,7 +101,7 @@ fi # Create helm repository if ! helm repo list 2>&1 | awk '{ print $1, $2 }' | grep -q "$HELM_REPO" > /dev/null; then - helm repo add "$HELM_REPO" + helm repo add $HELM_REPO fi # Make all -- 2.16.6