Merge "Allow sign_target_files_apks.py to create zip64 signed TF.zip."

This commit is contained in:
Treehugger Robot
2017-06-14 05:36:49 +00:00
committed by Gerrit Code Review

View File

@@ -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)