Merge "Allow sign_target_files_apks.py to create zip64 signed TF.zip."
This commit is contained in:
@@ -634,7 +634,9 @@ def main(argv):
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
input_zip = zipfile.ZipFile(args[0], "r")
|
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)
|
misc_info = common.LoadInfoDict(input_zip)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user