diff --git a/distrib/builder/event.py b/distrib/builder/event.py index 34af6d03b6..003b39e7aa 100644 --- a/distrib/builder/event.py +++ b/distrib/builder/event.py @@ -49,9 +49,9 @@ def __init__(self, build=None, latestAvailable=False): if self.num >= 816: # Added Mac OS X 10.8. # Platforms: Name File ext sys_id() - self.oses = [('Windows (32-bit)', ('.exe', '.msi'), 'win32-32bit'), - ('Windows (64-bit)', 'x64.msi', 'win64-64bit'), - ('OS X 10.8+ (x86_64)', ('.dmg', 'macx8.dmg'), 'macx8-64bit'), + self.oses = [('Windows (32-bit)', ('.exe', '.msi', 'x86.zip'), 'win32-32bit'), + ('Windows (64-bit)', ('x64.msi', 'x64.zip'), 'win64-64bit'), + ('OS X 10.8+ (x86_64)', ('.dmg', 'macx8.dmg'), 'macx8-64bit'), ('OS X 10.6+ (x86_64/i386)', ('mac10_6.dmg', 'macx6.dmg'), 'darwin-64bit'), ('OS X 10.4+ (ppc/i386)', '32bit.dmg', 'darwin-32bit'), ('Ubuntu (64-bit)', 'amd64.deb', 'linux2-64bit'), diff --git a/distrib/platform_release.py b/distrib/platform_release.py index e1af30ed09..1a6a92f00f 100755 --- a/distrib/platform_release.py +++ b/distrib/platform_release.py @@ -179,7 +179,7 @@ def mac_release(): def win_release(): - cmake_release('/m', ['*.msi']) + cmake_release('/m', ['*.msi', '*.zip']) def linux_release():