diff options
author | Tomáš Levora <t.levora@partner.samsung.com> | 2019-10-30 15:01:21 +0100 |
---|---|---|
committer | Tomáš Levora <t.levora@partner.samsung.com> | 2019-10-30 15:06:36 +0100 |
commit | f2ae9b14e2b49e537cf87a4409912377f00bc471 (patch) | |
tree | a136bb634e56fdb629b12b513ced40636905d314 /build/creating_data | |
parent | 8f7b7135d9bb7272157990dddbc2a22a234db451 (diff) |
Fixing helm repo add missing second argument bug
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 <t.levora@partner.samsung.com>
Diffstat (limited to 'build/creating_data')
-rwxr-xr-x | build/creating_data/docker-images-collector.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |