зеркало из https://github.com/mozilla/bedrock.git
Merge pull request #4729 from pmac/remove-win64-stub-installer-1348610
Fix bug 1348610: Win64 stub installer only for Nightly
This commit is contained in:
Коммит
436d87f986
|
@ -88,7 +88,7 @@ class TestFirefoxDesktop(TestCase):
|
|||
# Windows 64-bit
|
||||
url = firefox_desktop.get_download_url('release', '38.0', 'win64', 'en-US', True)
|
||||
self.assertListEqual(parse_qsl(urlparse(url).query),
|
||||
[('product', 'firefox-stub'),
|
||||
[('product', 'firefox-38.0-SSL'),
|
||||
('os', 'win64'),
|
||||
('lang', 'en-US')])
|
||||
# Linux 64-bit
|
||||
|
@ -110,7 +110,7 @@ class TestFirefoxDesktop(TestCase):
|
|||
('lang', 'en-US')])
|
||||
url = firefox_desktop.get_download_url('alpha', '28.0a2', 'win64', 'en-US', True)
|
||||
self.assertListEqual(parse_qsl(urlparse(url).query),
|
||||
[('product', 'firefox-aurora-stub'),
|
||||
[('product', 'firefox-aurora-latest-ssl'),
|
||||
('os', 'win64'),
|
||||
('lang', 'en-US')])
|
||||
url = firefox_desktop.get_download_url('alpha', '28.0a2', 'osx', 'en-US', True)
|
||||
|
|
|
@ -617,15 +617,21 @@ STUB_INSTALLER_ALL = '__ALL__'
|
|||
STUB_INSTALLER_LOCALES = {
|
||||
'release': {
|
||||
'win': STUB_INSTALLER_ALL,
|
||||
'win64': STUB_INSTALLER_ALL,
|
||||
# should come back in Fx 55
|
||||
# bug 1348610
|
||||
# 'win64': STUB_INSTALLER_ALL,
|
||||
},
|
||||
'beta': {
|
||||
'win': STUB_INSTALLER_ALL,
|
||||
'win64': STUB_INSTALLER_ALL,
|
||||
# should come back in Fx 55
|
||||
# bug 1348610
|
||||
# 'win64': STUB_INSTALLER_ALL,
|
||||
},
|
||||
'alpha': {
|
||||
'win': ['en-us'],
|
||||
'win64': ['en-us'],
|
||||
# should come back in Fx 55
|
||||
# bug 1348610
|
||||
# 'win64': ['en-us'],
|
||||
},
|
||||
'nightly': {
|
||||
'win': ['en-us'],
|
||||
|
|
Загрузка…
Ссылка в новой задаче