Index: recipes.py |
diff --git a/recipes.py b/recipes.py |
index 0626c1f356f2ef24611b9eab21b59192bc8d006c..bd99b4702b769674d3800c3a7c31a65913873f1d 100755 |
--- a/recipes.py |
+++ b/recipes.py |
@@ -434,11 +434,15 @@ def main(): |
parser.add_argument('-O', '--project-override', metavar='ID=PATH', |
action=ProjectOverrideAction, |
help='Override a project repository path with a local one.') |
+ # TODO(phajdan.jr): Remove bootstrap switches once established as default. |
parser.add_argument( |
- '--use-bootstrap', action='store_true', |
+ '--use-bootstrap', action='store_true', default=True, |
help='Use bootstrap/bootstrap.py to create a isolated python virtualenv' |
' with required python dependencies.') |
parser.add_argument( |
+ '--disable-bootstrap', action='store_false', dest='use_bootstrap', |
+ help='Disables bootstrap (see --use-bootstrap)') |
+ parser.add_argument( |
'--operational-args-path', action='store', |
type=os.path.abspath, |
help='The path to an operational Arguments file. If provided, this file ' |