Skip to content

Commit

Permalink
fix shellchecks
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaasman00 committed Nov 4, 2024
1 parent 0c43dfb commit 1770c78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/install/install_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/install/install_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1770c78

Please sign in to comment.