Skip to content

Commit

Permalink
Update installUpgradeFunctions.sh: shellcheck fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Aug 31, 2024
1 parent e86c025 commit 24af0e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/installUpgradeFunctions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ function update_array_field()
else
local URL=".${ARRAY}[${I}].${FIELD}"
local V="$( settings "${URL}" "${FILE}" )"
if [[ ${V} != ${NEW_VALUE} ]]; then
if [[ ${V} != "${NEW_VALUE}" ]]; then
update_json_file "${URL}" "${NEW_VALUE}" "${FILE}"
fi
fi
Expand Down

0 comments on commit 24af0e6

Please sign in to comment.