Index: sitescripts/extensions/utils.py |
=================================================================== |
--- a/sitescripts/extensions/utils.py |
+++ b/sitescripts/extensions/utils.py |
@@ -156,18 +156,18 @@ class Configuration(object): |
self.type = self.config.get('extensions', self.repositoryName + '_type') |
else: |
self.type = 'gecko' |
if self.type == 'gecko': |
self.packageSuffix = '.xpi' |
elif self.type == 'chrome' or self.type == 'opera': |
self.packageSuffix = '.crx' |
- elif self.type == 'kmeleon': |
- self.packageSuffix = '.zip' |
+ elif self.type == 'ie': |
+ self.packageSuffix = '-x64.msi' |
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): |
""" |