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-13 12:36:41 -0500
commitddc71c136b67a284b1fafb7e3a6a95db9c583cfc (patch)
treec6c60b0d362cdc56e1f499572d50a1c39e1c1ffe
parent08d14ee45a8e2c39bf7513396e23dc302720f4e9 (diff)
downloadbuildstream-ddc71c136b67a284b1fafb7e3a6a95db9c583cfc.tar.gz
_frontend/main.py: Rewording `--track-all` build option
-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,