From 1770c789ed203fa08c580cabe5309c7e3475a502 Mon Sep 17 00:00:00 2001 From: Dakota Paasman <122491662+dpaasman00@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:36:26 -0500 Subject: [PATCH] fix shellchecks --- scripts/install/install_macos.sh | 2 +- scripts/install/install_unix.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install/install_macos.sh b/scripts/install/install_macos.sh index 571b0a7ca..a7d0e2299 100755 --- a/scripts/install/install_macos.sh +++ b/scripts/install/install_macos.sh @@ -470,7 +470,7 @@ ask_clean_install() { if [ -f "$SUPERVISOR_YML_PATH" ]; then # Check for default config file hash cfg_file_hash=$(sha256sum "$SUPERVISOR_YML_PATH" | awk '{print $1}') - if [ "$cfg_file_hash" == "$DEFAULT_SUPERVISOR_CFG_HASH"]; then + if [ "$cfg_file_hash" = "$DEFAULT_SUPERVISOR_CFG_HASH" ]; then # config matches default config, mark clean_install as true clean_install="true" else diff --git a/scripts/install/install_unix.sh b/scripts/install/install_unix.sh index 26eb2f17c..06c76b68b 100755 --- a/scripts/install/install_unix.sh +++ b/scripts/install/install_unix.sh @@ -476,7 +476,7 @@ ask_clean_install() { if [ -f "$SUPERVISOR_YML_PATH" ]; then # Check for default config file hash cfg_file_hash=$(sha256sum "$SUPERVISOR_YML_PATH" | awk '{print $1}') - if [ "$cfg_file_hash" == "$DEFAULT_SUPERVISOR_CFG_HASH"]; then + if [ "$cfg_file_hash" = "$DEFAULT_SUPERVISOR_CFG_HASH" ]; then # config matches default config, mark clean_install as true clean_install="true" else