From 1deccc9524bf0eb0f6b136f708a42b2e6d21523d Mon Sep 17 00:00:00 2001 From: Derek Nola Date: Tue, 13 Sep 2022 11:30:04 -0700 Subject: [PATCH] remove quotest to match style Signed-off-by: Derek Nola --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 54bda8de59..64cadcd5bf 100755 --- a/install.sh +++ b/install.sh @@ -270,13 +270,13 @@ setup_env() { # --- check if skip download environment variable set --- can_skip_download_binary() { - if [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != true ] && [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != "binary" ]; then + if [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != true ] && [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != binary ]; then return 1 fi } can_skip_download_selinux() { - if [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != true ] && [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != "selinux" ]; then + if [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != true ] && [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != selinux ]; then return 1 fi }