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

Unified Diff: sitescripts/extensions/bin/createNightlies.py

Issue 4998927141044224: Issue 1137 - Fix IE devbuild updates (Closed)
Patch Set: Created July 25, 2014, 6:54 a.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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/extensions/bin/createNightlies.py
===================================================================
--- a/sitescripts/extensions/bin/createNightlies.py
+++ b/sitescripts/extensions/bin/createNightlies.py
@@ -232,19 +232,11 @@
updateURL = urlparse.urljoin(self.config.nightliesURL, self.basename + '/' + packageName + '?update')
self.writeLibabpUpdateManifest({
"%s/%s" % (self.basename, "msie64"): {
- "url": updateURL,
- "version": version,
- },
- "%s/%s" % (self.basename, "win64"): {
- "url": updateURL,
+ "url": updateURL.replace(".exe", "-x64.msi"),
"version": version,
},
"%s/%s" % (self.basename, "msie32"): {
- "url": updateURL.replace("-x64", "-x86"),
- "version": version,
- },
- "%s/%s" % (self.basename, "win32"): {
- "url": updateURL.replace("-x64", "-x86"),
+ "url": updateURL.replace(".exe", "-x86.msi"),
"version": version,
},
})
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld