summaryrefslogtreecommitdiffstats
path: root/kubernetes/helm/plugins/undeploy/undeploy.sh
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2021-09-07 07:06:11 +0000
committerGerrit Code Review <gerrit@onap.org>2021-09-07 07:06:11 +0000
commit0b7eb9ac71bf40746566b0dd48ddfca56b3dc2aa (patch)
tree8f1d36e2e6b68e62edf44e35e3eb5c3b2352d87a /kubernetes/helm/plugins/undeploy/undeploy.sh
parent970e502e6e61c9bdc9c4bae9ef4e7e1aaf821360 (diff)
parent42f91fc8f9467f9f7fb9ac7e6349b33964b63127 (diff)
Merge "[COMMON] Fix ${foo:3[:1]} bashisms"
Diffstat (limited to 'kubernetes/helm/plugins/undeploy/undeploy.sh')
-rwxr-xr-xkubernetes/helm/plugins/undeploy/undeploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/helm/plugins/undeploy/undeploy.sh b/kubernetes/helm/plugins/undeploy/undeploy.sh
index 35fc4ca251..72c64244c0 100755
--- a/kubernetes/helm/plugins/undeploy/undeploy.sh
+++ b/kubernetes/helm/plugins/undeploy/undeploy.sh
@@ -45,7 +45,7 @@ case "${1:-"help"}" in
usage
;;
*)
- undeploy $1 ${@:2}
+ undeploy $1 $(echo ${@} | sed 's/^ *[^ ]* *//')
;;
esac