Fix syntax error in util_functions.sh

This commit is contained in:
残页 2023-08-29 17:14:35 +08:00 committed by John Wu
parent f4b6385f9f
commit e9b9bf987b

View File

@ -323,7 +323,7 @@ get_flags() {
ISENCRYPTED=true
elif [ "$(getprop ro.crypto.state)" = "encrypted" ]; then
ISENCRYPTED=true
elif [ "$DATA" = "false" ]
elif [ "$DATA" = "false" ]; then
# No data access means unable to decrypt in recovery
ISENCRYPTED=true
else