aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/helm/plugins/undeploy/undeploy.sh
diff options
context:
space:
mode:
authorKrzysztof Opasiak <k.opasiak@samsung.com>2021-05-26 06:56:35 +0000
committerGerrit Code Review <gerrit@onap.org>2021-05-26 06:56:35 +0000
commitf4438980a2e002fdfb684ba30870f2349e38a4c3 (patch)
tree3a9ff4e35da00dfcbdb07cfaa2710a1978a2dccd /kubernetes/helm/plugins/undeploy/undeploy.sh
parent9970854c6fec9e99bf8c5fd88d2183041a8c9fb7 (diff)
parentba6e50fd66d06231ff96f9a9c9a4b25b91fa5623 (diff)
Merge "[COMMON] Fix condition bracket bashisms - step 1"
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 1689bf1b48..790f84fda9 100755
--- a/kubernetes/helm/plugins/undeploy/undeploy.sh
+++ b/kubernetes/helm/plugins/undeploy/undeploy.sh
@@ -29,7 +29,7 @@ undeploy() {
done
}
-if [[ $# < 1 ]]; then
+if [ $# < 1 ]; then
echo "Error: command 'undeploy' requires a release name"
exit 0
fi