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

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

Issue 29337988: Issue 382 - Removed support for Chrome devbuilds using the experimental API (Closed)
Patch Set: Created March 8, 2016, 5:38 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 | « no previous file | sitescripts/extensions/template/nightlies.html » ('j') | 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
@@ -201,8 +201,6 @@
metadata = packager.readMetadata(self.tempdir, self.config.type)
self.version = packager.getBuildVersion(self.tempdir, metadata, False, self.revision)
self.basename = metadata.get("general", "basename")
- if self.config.experimental:
- self.basename += '-experimental'
self.compat = []
if metadata.has_section('compat') and metadata.has_option('compat', 'chrome'):
@@ -309,7 +307,7 @@
raise
elif self.config.type == 'chrome':
import buildtools.packagerChrome as packager
- packager.createBuild(self.tempdir, type=self.config.type, outFile=self.path, buildNum=self.revision, keyFile=self.config.keyFile, experimentalAPI=self.config.experimental)
+ packager.createBuild(self.tempdir, type=self.config.type, outFile=self.path, buildNum=self.revision, keyFile=self.config.keyFile)
elif self.config.type == 'safari':
import buildtools.packagerSafari as packager
packager.createBuild(self.tempdir, type=self.config.type, outFile=self.path, buildNum=self.revision, keyFile=self.config.keyFile)
« no previous file with comments | « no previous file | sitescripts/extensions/template/nightlies.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld