diff options
author | Guillaume Lambert <guillaume.lambert@orange.com> | 2021-03-11 15:53:15 +0100 |
---|---|---|
committer | Krzysztof Opasiak <k.opasiak@samsung.com> | 2021-05-11 17:50:14 +0000 |
commit | 3ec69ace22277da78ba3de681078478e7f036bd0 (patch) | |
tree | 9807e827eb92aa9d0830293dd5b324acbf8960d7 /kubernetes/helm/plugins/undeploy/undeploy.sh | |
parent | fd9c202816c479e98edde2f3f92625825141013e (diff) |
[COMMON] Fix arithmetic loop bashisms
pointed out by checkbashisms.
Issue-ID: OOM-2643
Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com>
Change-Id: I85fd7d9beca75dc729de247fa67a20b801748c19
Diffstat (limited to 'kubernetes/helm/plugins/undeploy/undeploy.sh')
-rwxr-xr-x | kubernetes/helm/plugins/undeploy/undeploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/helm/plugins/undeploy/undeploy.sh b/kubernetes/helm/plugins/undeploy/undeploy.sh index e5c0c12711..1689bf1b48 100755 --- a/kubernetes/helm/plugins/undeploy/undeploy.sh +++ b/kubernetes/helm/plugins/undeploy/undeploy.sh @@ -23,7 +23,7 @@ undeploy() { array=($(helm ls -q --all | grep $RELEASE)) n=${#array[*]} - for (( i = n-1; i >= 0; i-- )) + for i in $(seq $(($n-1)) -1 0) do helm del "${array[i]}" $FLAGS done |