Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e11d4e2b authored by Tao Bao's avatar Tao Bao Committed by android-build-merger
Browse files

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

Merge "Allow sign_target_files_apks.py to create zip64 signed TF.zip." am: 9baf6752 am: 7d5f8ec7 am: 5edb6ee6
am: 2ecc50cb

Change-Id: If61ee2d3350a9af89a90f26dbdf9b5eaf6e7d48a
parents ee606343 2ecc50cb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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)