forked from openkylin/platform_build
Merge "releasetools: Fix an issue when using APEX container key mapping."
This commit is contained in:
commit
7cd870ed60
|
@ -193,7 +193,7 @@ def GetApexKeys(keys_info, key_map):
|
||||||
if apex not in keys_info:
|
if apex not in keys_info:
|
||||||
continue
|
continue
|
||||||
assert key, 'Presigned APEX container for {} is not allowed'.format(apex)
|
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
|
return keys_info
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue