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

Commit 16617750 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Allow system images larger than 2GiB, pt. 2"

parents 49ec2b18 c4a1b87d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -141,7 +141,13 @@ def main(argv):

  finally:
    print "cleaning up..."
    # http://b/18015246
    # See common.py for context.  zipfile also refers to ZIP64_LIMIT during
    # close() when it writes out the central directory.
    saved_zip64_limit = zipfile.ZIP64_LIMIT
    zipfile.ZIP64_LIMIT = (1 << 32) - 1
    output_zip.close()
    zipfile.ZIP64_LIMIT = saved_zip64_limit
    shutil.rmtree(OPTIONS.input_tmp)

  print "done."