Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9a68d81 authored by Tao Bao's avatar Tao Bao Committed by android-build-merger
Browse files

Merge "releasetools: Fix an issue when using APEX container key mapping."

am: 7cd870ed

Change-Id: I3124312baf6f3e40a00f8c2bb079fa3155197828
parents 2f6a69ef 7cd870ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ def GetApexKeys(keys_info, key_map):
    if apex not in keys_info:
      continue
    assert key, 'Presigned APEX container for {} is not allowed'.format(apex)
    keys_info[apex][1] = key_map.get(key, key)
    keys_info[apex] = (keys_info[apex][0], key_map.get(key, key))

  return keys_info