| Index: recipe_engine/autoroll.py
|
| diff --git a/recipe_engine/autoroll.py b/recipe_engine/autoroll.py
|
| index 8cb70106a7c56db17fbc178761c6ec0545285349..448c91efc109a97de939012b5167e35ff7167f31 100644
|
| --- a/recipe_engine/autoroll.py
|
| +++ b/recipe_engine/autoroll.py
|
| @@ -108,8 +108,6 @@
|
| args = [
|
| sys.executable,
|
| os.path.join(repo_root, package_spec.recipes_path, 'recipes.py'),
|
| - # Invoked recipes.py should not re-bootstrap (to avoid issues on bots).
|
| - '--disable-bootstrap',
|
| 'fetch',
|
| ]
|
| subprocess.check_call(args)
|
| @@ -128,8 +126,6 @@
|
| args = [
|
| sys.executable,
|
| os.path.join(repo_root, package_spec.recipes_path, 'recipes.py'),
|
| - # Invoked recipes.py should not re-bootstrap (to avoid issues on bots).
|
| - '--disable-bootstrap',
|
| ]
|
| if not allow_fetch:
|
| args.append('--no-fetch')
|
|
|