Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/extensions/utils.py

Issue 5929758265180160: Issue 42 - Fix IE devbuild listings (Closed)
Patch Set: Created June 13, 2014, 12:06 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/extensions/template/nightlies.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/extensions/utils.py
===================================================================
--- a/sitescripts/extensions/utils.py
+++ b/sitescripts/extensions/utils.py
@@ -163,17 +163,17 @@ class Configuration(object):
if self.type == 'gecko':
self.packageSuffix = '.xpi'
elif self.type == 'chrome' or self.type == 'opera':
self.packageSuffix = '.crx'
elif self.type == 'safari':
self.packageSuffix = '.safariextz'
elif self.type == 'ie':
- self.packageSuffix = '-x64.msi'
+ self.packageSuffix = '.exe'
elif self.type == 'android':
self.packageSuffix = '.apk'
if self.nightlyConfig and not self.nightlyConfig.has_section(self.repositoryName):
self.nightlyConfig.add_section(self.repositoryName)
def __str__(self):
"""
« no previous file with comments | « sitescripts/extensions/template/nightlies.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld