Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Unified Diff: recipes.py

Issue 2801073004: Enable recipe bootstrap by default (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698