diff options
author | 2021-05-26 06:56:35 +0000 | |
---|---|---|
committer | 2021-05-26 06:56:35 +0000 | |
commit | f4438980a2e002fdfb684ba30870f2349e38a4c3 (patch) | |
tree | 3a9ff4e35da00dfcbdb07cfaa2710a1978a2dccd /kubernetes/helm/plugins/undeploy | |
parent | 9970854c6fec9e99bf8c5fd88d2183041a8c9fb7 (diff) | |
parent | ba6e50fd66d06231ff96f9a9c9a4b25b91fa5623 (diff) |
Merge "[COMMON] Fix condition bracket bashisms - step 1"
Diffstat (limited to 'kubernetes/helm/plugins/undeploy')
-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 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 |