From 25a14e44e70a42661eb7621a72366a16b418822e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 23 Apr 2018 15:07:44 +0200 Subject: [PATCH] Fix creation of win nightly archive. The new name of the platform is "win-i686", not anymore "win32". --- travis/compile_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index 6b67aab..cc2049c 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -97,7 +97,7 @@ def make_archive(project, platform): archive_name = "{}_{}-{}".format(project, platform, postfix) - if platform == "win32": + if platform == "win-i686": file_to_archives = ['{}.exe'.format(f) for f in file_to_archives] open_archive = lambda a : zipfile.ZipFile(str(a), 'w', compression=zipfile.ZIP_LZMA) archive_add = lambda a, f : a.write(str(base_bin_dir/f), arcname=str(f))