Chromium Code Reviews| Index: recipes.py |
| diff --git a/recipes.py b/recipes.py |
| index e71420e5d7307ac9d5dd5150456cccecbcdbc05e..44ff2cc08812c54913ac21df7e483a60487c3347 100755 |
| --- a/recipes.py |
| +++ b/recipes.py |
| @@ -390,10 +390,9 @@ def main(): |
| os.environ['RECIPES_RUN_BOOTSTRAP'] = '1' |
| args = sys.argv |
| - return subprocess.call( |
| - [os.path.join( |
| - os.path.dirname(os.path.realpath(__file__)), 'ENV/bin/python'), |
| - os.path.join(ROOT_DIR, 'recipes.py')] + original_sys_argv[1:]) |
| + return subprocess.call([os.path.join( |
| + ROOT_DIR, 'ENV', 'bin', 'python'), |
|
dnj
2016/07/11 21:35:52
Note that on Windows this is "python.exe".
martiniss
2016/07/11 23:45:15
Done.
|
| + os.path.join(ROOT_DIR, 'recipes.py')] + original_sys_argv[1:]) |
| if args.verbose: |
| logging.getLogger().setLevel(logging.INFO) |