Am 29.04.2017 um 23:00 schrieb Torsten Bögershausen: > This fails here under Mac OS: > commit 4cdf3f9d84568da72f1dcade812de7a42ecb6d15 > Author: René Scharfe <l.s.r@xxxxxx> > Date: Mon Apr 24 19:33:34 2017 +0200 > > archive-zip: support files bigger than 4GB > > --------------------------- > Parts of t5004.log, hope this is helpful: > > "$GIT_UNZIP" -t many-big.zip > > Archive: many-big.zip > warning [many-big.zip]: 577175 extra bytes at beginning or within zipfile > (attempting to process anyway) > error [many-big.zip]: start of central directory not found; > zipfile corrupt. > (please check that you have transferred or created the zipfile in the > appropriate BINARY mode and that you have compiled UnZip properly) > not ok 12 - zip archive bigger than 4GB > # > # # build string containing 65536 characters Which version of unzip do you have (unzip -v, look for ZIP64_SUPPORT)? It seems that (some version of?) OS X ships with an older unzip which can't handle big files: https://superuser.com/questions/114011/extract-large-zip-file-50-gb-on-mac-os-x Is the following check (zip archive with files bigger than 4GB) skipped, e.g. because ZIPINFO is missing? Otherwise I would expect it to fail as well. René