Merge "sign_target_files_apks: Relax ro.build.description requirements" am: 243f9ea65f

Original change: https://android-review.googlesource.com/c/platform/build/+/1651427

Change-Id: I9db8a759a54d4c95da33087bdcd536b90e8c154e
This commit is contained in:
Treehugger Robot
2021-04-24 05:35:22 +00:00
committed by Automerger Merge Worker

View File

@@ -799,7 +799,7 @@ def RewriteProps(data):
value = "/".join(pieces)
elif key == "ro.build.description":
pieces = value.split(" ")
assert len(pieces) == 5
assert pieces[-1].endswith("-keys")
pieces[-1] = EditTags(pieces[-1])
value = " ".join(pieces)
elif key.startswith("ro.") and key.endswith(".build.tags"):