Chromium Code Reviews| Index: scripts/master/factory/annotator_commands.py |
| diff --git a/scripts/master/factory/annotator_commands.py b/scripts/master/factory/annotator_commands.py |
| index 30652d517d38adadc05d90e8639d13c9df5291aa..52ef61e84f087b16e58eabdacf7a26bbe66fc00d 100644 |
| --- a/scripts/master/factory/annotator_commands.py |
| +++ b/scripts/master/factory/annotator_commands.py |
| @@ -26,8 +26,9 @@ class AnnotatorCommands(commands.FactoryCommands): |
| if call_count != 0: |
| raise Exception("AnnotatorCommands.AddAnnotatedScript called twice.") |
| self._call_counts['AddAnnotatedScript'] += 1 |
| - runner = self.PathJoin(self._script_dir, 'annotated_run.py') |
|
iannucci
2015/11/26 00:37:34
ugh. Please no. This means we need to restart all
|
| - cmd = [self._python, '-u', runner, '--use-factory-properties-from-disk'] |
| + runner = self.PathJoin(self._script_dir, 'launcher.py') |
| + cmd = [self._python, '-u', runner, '--', |
| + '--use-factory-properties-from-disk'] |
| cmd = self.AddB64GzBuildProperties(cmd) |
| self._factory.addStep(chromium_step.AnnotatedCommand, |
| name='steps', |