From e9b9bf987bf874b98c461f9fdedd00f95696e4d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AE=8B=E9=A1=B5?= Date: Tue, 29 Aug 2023 17:14:35 +0800 Subject: [PATCH] Fix syntax error in util_functions.sh --- scripts/util_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/util_functions.sh b/scripts/util_functions.sh index f2c41d825..8ace83b75 100644 --- a/scripts/util_functions.sh +++ b/scripts/util_functions.sh @@ -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