Merge "Allow sign_target_files_apks.py to create zip64 signed TF.zip." am: 9baf675285
am: 7d5f8ec704
am: 5edb6ee6fd
Change-Id: Id342b801dcd112c41235bbf36d18b9ea43ef4d57
This commit is contained in:
commit
2ecc50cba4
1 changed files with 3 additions and 1 deletions
|
@ -634,7 +634,9 @@ def main(argv):
|
|||
sys.exit(1)
|
||||
|
||||
input_zip = zipfile.ZipFile(args[0], "r")
|
||||
output_zip = zipfile.ZipFile(args[1], "w")
|
||||
output_zip = zipfile.ZipFile(args[1], "w",
|
||||
compression=zipfile.ZIP_DEFLATED,
|
||||
allowZip64=True)
|
||||
|
||||
misc_info = common.LoadInfoDict(input_zip)
|
||||
|
||||
|
|
Loading…
Reference in a new issue