| Index: scripts/tools/run_recipe.py
|
| diff --git a/scripts/tools/run_recipe.py b/scripts/tools/run_recipe.py
|
| index 0878a42bcf2228977ef09d9ff3ec416d13ffb894..337c423adbd25cf39c8e3407510cb3f788439d8b 100755
|
| --- a/scripts/tools/run_recipe.py
|
| +++ b/scripts/tools/run_recipe.py
|
| @@ -1,4 +1,4 @@
|
| -#!/usr/bin/env python
|
| +#!/usr/bin/env python -u
|
| # Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
| @@ -93,7 +93,7 @@ def main(argv):
|
| env['RUN_SLAVE_UPDATED_SCRIPTS'] = '1'
|
| env['PYTHONUNBUFFERED'] = '1'
|
| return subprocess.call(
|
| - ['python', RUNIT, 'python', ANNOTATED_RUN,
|
| + ['python', '-u', RUNIT, 'python', '-u', ANNOTATED_RUN,
|
| '--keep-stdin', # so that pdb works for local execution
|
| '--factory-properties', json.dumps(fp),
|
| '--build-properties', json.dumps(bp)],
|
|
|