aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/helm/plugins/undeploy
diff options
context:
space:
mode:
authorGuillaume Lambert <guillaume.lambert@orange.com>2021-03-10 14:02:13 +0100
committerguillaume.lambert <guillaume.lambert@orange.com>2021-09-06 09:01:11 +0200
commit42f91fc8f9467f9f7fb9ac7e6349b33964b63127 (patch)
tree9ea70aca88543948c7247bad17217ab94c296ea4 /kubernetes/helm/plugins/undeploy
parent3980a8cbeb63c885b123ac50033e32ed996bb39a (diff)
[COMMON] Fix ${foo:3[:1]} bashisms
pointed out by checkbashisms Issue-ID: OOM-264 Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com> Change-Id: Ief3b2595a55f0e7a0a2e7ab05857848c99ce42f9
Diffstat (limited to 'kubernetes/helm/plugins/undeploy')
-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