Merge "Fix syntax error for SignApexFile" am: bbf17e92e5
am: 9b1bc61305
Change-Id: Ic16f53cd67f9e3659349399ef1bef7a791f21d76
This commit is contained in:
commit
8bf284658e
2 changed files with 4 additions and 3 deletions
|
@ -44,7 +44,7 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
|
||||
def SignApexFile(avbtool, apex_file, payload_key, container_key,
|
||||
signing_args=None):
|
||||
no_hashtree, signing_args=None):
|
||||
"""Signs the given apex file."""
|
||||
with open(apex_file, 'rb') as input_fp:
|
||||
apex_data = input_fp.read()
|
||||
|
@ -56,7 +56,7 @@ def SignApexFile(avbtool, apex_file, payload_key, container_key,
|
|||
container_key=container_key,
|
||||
container_pw=None,
|
||||
codename_to_api_level_map=None,
|
||||
no_hashtree=False,
|
||||
no_hashtree=no_hashtree,
|
||||
signing_args=signing_args)
|
||||
|
||||
|
||||
|
|
|
@ -38,5 +38,6 @@ class SignApexTest(test_utils.ReleaseToolsTestCase):
|
|||
'avbtool',
|
||||
foo_apex,
|
||||
payload_key,
|
||||
container_key)
|
||||
container_key,
|
||||
False)
|
||||
self.assertTrue(os.path.exists(signed_foo_apex))
|
||||
|
|
Loading…
Reference in a new issue