post-fs-data: Ignore empty vendor security patch levels

This commit is contained in:
Danny Lin 2021-01-14 00:05:36 -08:00
parent 7fe2c90113
commit 7df5188942
No known key found for this signature in database
GPG Key ID: 1988FAA1797EE5AC

View File

@ -5,8 +5,8 @@ set -eufo pipefail
system_patch="$(getprop ro.build.version.security_patch)"
vendor_patch="$(getprop ro.vendor.build.security_patch)"
# Fix mismatching security patch levels
if [[ "$system_patch" != "$vendor_patch" ]]; then
# Fix mismatching security patch levels if vendor patch is not empty
if [[ ! -z "$vendor_patch" ]] && [[ "$system_patch" != "$vendor_patch" ]]; then
resetprop ro.build.version.security_patch "$vendor_patch"
resetprop ro.build.version.real_security_patch "$system_patch"
fi