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

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

Change-Id: Idb2c97255085de4d689fc34e8cf44824cacbd2c5
This commit is contained in:
Treehugger Robot
2021-04-24 05:52:14 +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"):