Chromium Code Reviews| Index: scripts/common/annotator.py |
| diff --git a/scripts/common/annotator.py b/scripts/common/annotator.py |
| index bca5f3f1700cd66b18d203d72b7e6692fddedab4..eb0c86b4feb3cab4153006b6a85317848f502192 100755 |
| --- a/scripts/common/annotator.py |
| +++ b/scripts/common/annotator.py |
| @@ -381,7 +381,8 @@ def _run_step(stream, build_failure, |
| ret = chromium_utils.RunCommand(command=map(str, cmd), |
| cwd=cwd, |
| env=_merge_envs(os.environ, env), |
| - filter_obj=filter_obj) |
| + filter_obj=filter_obj, |
| + pipes=step_dict.get('pipes')) |
|
iannucci
2013/05/20 19:41:38
I think this is no longer necessary?
mkosiba (inactive)
2013/05/21 10:56:07
Done.
|
| if ret != 0: |
| print 'step returned non-zero exit code: %d' % ret |
| print 'step was: %s' % json.dumps(step_dict) |