From 3d9944e2ee999a69cf510f8bae49d3123093bc23 Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Tue, 12 Dec 2017 16:45:31 -0500 Subject: _frontend/main.py: Rewording `--track-all` build option --- buildstream/_frontend/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildstream/_frontend/main.py b/buildstream/_frontend/main.py index 564eabfef..faef7e50f 100644 --- a/buildstream/_frontend/main.py +++ b/buildstream/_frontend/main.py @@ -199,11 +199,11 @@ def cli(context, **kwargs): type=click.Path(dir_okay=False, readable=True), help="Specify elements to track during the build. Can be used " "repeatedly to specify multiple elements") +@click.option('--track-all', default=False, is_flag=True, + help="Track all elements in the pipeline") @click.option('--track-except', multiple=True, type=click.Path(dir_okay=False, readable=True), help="Except certain dependencies from tracking") -@click.option('--track-all', default=False, is_flag=True, - help="Track all elements in the build pipeline before building") @click.option('--track-save', default=False, is_flag=True, help="Write out the tracked references to their element files") @click.argument('elements', nargs=-1, -- cgit v1.2.1