mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Compress windows distribution zip files
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
9d45d872a7
commit
5e72cf0123
|
@ -205,7 +205,7 @@ def mk_zip_core(x64):
|
||||||
try:
|
try:
|
||||||
os.chdir(DIST_DIR)
|
os.chdir(DIST_DIR)
|
||||||
zfname = '%s.zip' % dist_path
|
zfname = '%s.zip' % dist_path
|
||||||
ZIPOUT = zipfile.ZipFile(zfname, 'w')
|
ZIPOUT = zipfile.ZipFile(zfname, 'w', zipfile.ZIP_DEFLATED)
|
||||||
os.path.walk(dist_path, mk_zip_visitor, '*')
|
os.path.walk(dist_path, mk_zip_visitor, '*')
|
||||||
if is_verbose():
|
if is_verbose():
|
||||||
print "Generated '%s'" % zfname
|
print "Generated '%s'" % zfname
|
||||||
|
|
Loading…
Reference in a new issue