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

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

Issue 29753611: Noissue - Remove fallback for old buildtools version (Closed)
Patch Set: Created April 16, 2018, 4:53 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 | 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
diff --git a/sitescripts/extensions/bin/createNightlies.py b/sitescripts/extensions/bin/createNightlies.py
index 4bd0f7fe3792361c1211c7049bf6f09ac0acb264..87447617bff44c881e7986aa0a4ce2cfbba426d0 100644
--- a/sitescripts/extensions/bin/createNightlies.py
+++ b/sitescripts/extensions/bin/createNightlies.py
@@ -350,11 +350,8 @@ class NightlyBuild(object):
env = dict(env, SPIDERMONKEY_BINARY=spiderMonkeyBinary)
command = [os.path.join(self.tempdir, 'build.py')]
- if self.config.type == 'safari':
- command.extend(['-t', self.config.type, 'build'])
- else:
- command.extend(['build', '-t', self.config.type])
- command.extend(['-b', self.buildNum])
+ command.extend(['build', '-t', self.config.type, '-b',
+ self.buildNum])
if self.config.type not in {'gecko', 'edge'}:
command.extend(['-k', self.config.keyFile])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld