diff --git a/client/tools/buildbot_annotated_steps.py b/client/tools/buildbot_annotated_steps.py index d65c4e04d67..347b483dfb0 100755 --- a/client/tools/buildbot_annotated_steps.py +++ b/client/tools/buildbot_annotated_steps.py @@ -218,7 +218,8 @@ def main(): match = re.search('dart-editor-fyi(.*)', name) name = 'dart-editor' + match.group(1) # In case we're an FYI builder, run 'tools/bots/editor.py'. - status = ProcessBot(name, 'editor') + status = ProcessBot(name, 'editor', + custom_env=EnvironmentWithoutBotoConfig()) else: # Run the old annotated steps script status = ProcessTools('release', name, version)