fix(webi): replace == with = for POSIX sh

See https://github.com/koalaman/shellcheck/issues/2857
This commit is contained in:
AJ ONeal
2023-11-07 23:38:09 -07:00
parent 7285d9efb6
commit 112311ae35
+1 -1
View File
@@ -184,7 +184,7 @@ webi_upgrade() { (
echo " $(t_dim 'Found') $(t_path "${b_path_rel}")"
b_checksum="$(fn_checksum "${a_path}")"
fi
if test "$b_checksum" == "${WEBI_CHECKSUM}"; then
if test "$b_checksum" = "${WEBI_CHECKSUM}"; then
sleep 0.1
return 0
fi