summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-12 16:45:31 -0500
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-12 16:46:46 -0500
commit3d9944e2ee999a69cf510f8bae49d3123093bc23 (patch)
treef7ee1b2bd7745971dd4a5cded53263bff3b21de3
parente1fd02b93a1387a51a78a8aa73a5c1e199df89ee (diff)
downloadbuildstream-tracking-changes-rebased.tar.gz
_frontend/main.py: Rewording `--track-all` build optiontracking-changes-rebased
-rw-r--r--buildstream/_frontend/main.py4
1 files 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,