Skip to content

Commit

Permalink
Windows|Builder: Include ZIP packages in the events feed
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 11, 2016
1 parent 38e30a0 commit 2ad31c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions distrib/builder/event.py
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion distrib/platform_release.py
Expand Up @@ -179,7 +179,7 @@ def mac_release():


def win_release():
cmake_release('/m', ['*.msi'])
cmake_release('/m', ['*.msi', '*.zip'])


def linux_release():
Expand Down

0 comments on commit 2ad31c1

Please sign in to comment.