From 415971b0220076be5363715f9e9d210db19d517d Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Wed, 13 Mar 2024 12:22:09 +0100 Subject: [PATCH] chore(cli): removing deprecated checks Signed-off-by: rjshrjndrn --- scripts/helmcharts/init.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/helmcharts/init.sh b/scripts/helmcharts/init.sh index 03096158e..776b09680 100644 --- a/scripts/helmcharts/init.sh +++ b/scripts/helmcharts/init.sh @@ -157,22 +157,22 @@ function install_openreplay() { } function main() { - [[ x$SKIP_K8S_INSTALL == "x1" ]] && { + [[ $SKIP_K8S_INSTALL == "1" ]] && { info "Skipping Kuberntes installation" } || { install_k8s } - [[ x$SKIP_K8S_TOOLS == "x1" ]] && { + [[ $SKIP_K8S_TOOLS == "1" ]] && { info "Skipping Kuberntes tools installation" } || { install_tools } - [[ x$SKIP_ROTATE_SECRETS == "x1" ]] && { + [[ $SKIP_ROTATE_SECRETS == "1" ]] && { info "Skipping random password generation" } || { create_passwords } - [[ x$SKIP_OR_INSTALL == "x1" ]] && { + [[ $SKIP_OR_INSTALL == "1" ]] && { info "Skipping OpenReplay installation" } || { set_permissions