| Index: sitescripts/extensions/bin/updateUpdateManifests.py |
| =================================================================== |
| --- a/sitescripts/extensions/bin/updateUpdateManifests.py |
| +++ b/sitescripts/extensions/bin/updateUpdateManifests.py |
| @@ -65,6 +65,11 @@ |
| minVersion, maxVersion = metadata.get('compat', key).split('/') |
| result['compat'].append({'id': value, 'minVersion': minVersion, 'maxVersion': maxVersion}) |
| return result |
| + elif repo.type == 'ie': |
| + return { |
| + 'name': repo.name, |
| + 'version': version |
| + } |
| else: |
| raise Exception('unknown repository type %r' % repo.type) |
| @@ -73,7 +78,7 @@ |
| writes an update manifest for all extensions and Android apps |
| """ |
| - extensions = {'gecko': [], 'android': [], 'safari': []} |
| + extensions = {'gecko': [], 'android': [], 'safari': [], 'ie': []} |
| for repo in Configuration.getRepositoryConfigurations(): |
| if repo.type not in extensions or not links.has_section(repo.repositoryName): |
| continue |