From 1158a5459633c4308e6e6bae336f0bf8a22d51a3 Mon Sep 17 00:00:00 2001 From: iannucci Date: Wed, 2 Nov 2016 16:23:11 -0700 Subject: [PATCH] Remove --bootstrap-script parameter from recipes.py R=martiniss@chromium.org BUG= Review-Url: https://codereview.chromium.org/2465613002 --- recipes.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes.py b/recipes.py index 79ca537dc..7b11ee5c4 100755 --- a/recipes.py +++ b/recipes.py @@ -161,8 +161,7 @@ def main(): time.sleep(random.uniform(2,5)) ensure_engine() - args = ['--package', recipes_cfg_path, - '--bootstrap-script', __file__] + sys.argv[1:] + args = ['--package', recipes_cfg_path] + sys.argv[1:] return _subprocess_call([ sys.executable, '-u', os.path.join(engine_path, engine_subpath, 'recipes.py')] + args)