diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-09-07 07:06:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-09-07 07:06:11 +0000 |
commit | 0b7eb9ac71bf40746566b0dd48ddfca56b3dc2aa (patch) | |
tree | 8f1d36e2e6b68e62edf44e35e3eb5c3b2352d87a /kubernetes/helm/plugins/deploy/deploy.sh | |
parent | 970e502e6e61c9bdc9c4bae9ef4e7e1aaf821360 (diff) | |
parent | 42f91fc8f9467f9f7fb9ac7e6349b33964b63127 (diff) |
Merge "[COMMON] Fix ${foo:3[:1]} bashisms"
Diffstat (limited to 'kubernetes/helm/plugins/deploy/deploy.sh')
-rwxr-xr-x | kubernetes/helm/plugins/deploy/deploy.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kubernetes/helm/plugins/deploy/deploy.sh b/kubernetes/helm/plugins/deploy/deploy.sh index d863a152a5..536be7b4a9 100755 --- a/kubernetes/helm/plugins/deploy/deploy.sh +++ b/kubernetes/helm/plugins/deploy/deploy.sh @@ -96,9 +96,9 @@ deploy() { RELEASE=$1 CHART_URL=$2 - FLAGS=${@:3} - CHART_REPO="$(echo "$CHART_URL" |cut -d'/' -f1)" - CHART_NAME="$(echo "$CHART_URL" |cut -d'/' -f2)" + FLAGS=$(echo ${@} | sed 's/^ *[^ ]* *[^ ]* *//') + CHART_REPO="$(echo "$CHART_URL" | cut -d'/' -f1)" + CHART_NAME="$(echo "$CHART_URL" | cut -d'/' -f2)" if expr "$HELM_VER" : "v3\..*" ; then CACHE_DIR=~/.local/share/helm/plugins/deploy/cache else @@ -287,7 +287,7 @@ case "${1:-"help"}" in usage ;; *) - deploy $1 $2 ${@:3} + deploy $1 $2 $(echo ${@} | sed 's/^ *[^ ]* *[^ ]* *//') ;; esac |