| Index: client/tools/buildbot_annotated_steps.py
|
| diff --git a/client/tools/buildbot_annotated_steps.py b/client/tools/buildbot_annotated_steps.py
|
| index a3fa9861d3d537e5e375d873871d5d2342410927..4eabfeb9857a4c632f57c40cc1d984c5d5edbab0 100755
|
| --- a/client/tools/buildbot_annotated_steps.py
|
| +++ b/client/tools/buildbot_annotated_steps.py
|
| @@ -207,10 +207,10 @@ def main():
|
| name = 'dart-editor' + match.group(1)
|
| is_fyi = True
|
| # Run the old annotated steps script first.
|
| - status = ProcessTools('release', name, version) or status
|
| + status = ProcessTools('release', name, version)
|
| # In case we're an FYI builder, run 'tools/bots/editor.py' as well
|
| if is_fyi:
|
| - status = ProcessBot(name, 'editor')
|
| + status = ProcessBot(name, 'editor') or status
|
| elif name.startswith('pub-'):
|
| status = ProcessBot(name, 'pub')
|
| elif name.startswith('vm-android'):
|
|
|