| Index: dart/tools/bots/compiler.py
|
| diff --git a/dart/tools/bots/compiler.py b/dart/tools/bots/compiler.py
|
| index 403c312ee840d1f03d6c75d16a6851d3a4049ba2..c752f8da6ba23c83b1a2d2893090318e985ad2f2 100644
|
| --- a/dart/tools/bots/compiler.py
|
| +++ b/dart/tools/bots/compiler.py
|
| @@ -301,11 +301,11 @@ def BuildCompiler(build_info):
|
| - build_info: the buildInfo object, containing information about what sort of
|
| build and test to be run.
|
| """
|
| - with BuildStep('Build SDK and d8'):
|
| + with bot.BuildStep('Build SDK and d8'):
|
| args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
|
| 'dart2js_bot']
|
| print 'Build SDK and d8: %s' % (' '.join(args))
|
| - RunProcess(args)
|
| + bot.RunProcess(args)
|
|
|
|
|
| if __name__ == '__main__':
|
|
|