summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-04-18 21:57:22 +0200
committerJürg Billeter <j@bitron.ch>2018-05-11 07:57:37 +0200
commitda4af7988df902f82e1bab015be923d41418b9bd (patch)
tree8f35c9064a557cbb7bd4145d370ddcecd5b54a5d
parentdf17f602d1ea84b51d8b75bbf452d8630108f6a8 (diff)
downloadbuildstream-da4af7988df902f82e1bab015be923d41418b9bd.tar.gz
_frontend/cli.py: Remove bst show --downloadable option
This is in preparation for moving away from summary files.
-rw-r--r--buildstream/_frontend/cli.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/buildstream/_frontend/cli.py b/buildstream/_frontend/cli.py
index 230c8427a..3c91cf80d 100644
--- a/buildstream/_frontend/cli.py
+++ b/buildstream/_frontend/cli.py
@@ -402,12 +402,10 @@ def push(app, elements, deps, remote):
@click.option('--format', '-f', 'format_', metavar='FORMAT', default=None,
type=click.STRING,
help='Format string for each element')
-@click.option('--downloadable', default=False, is_flag=True,
- help="Refresh downloadable state")
@click.argument('elements', nargs=-1,
type=click.Path(dir_okay=False, readable=True))
@click.pass_obj
-def show(app, elements, deps, except_, order, format_, downloadable):
+def show(app, elements, deps, except_, order, format_):
"""Show elements in the pipeline
By default this will show all of the dependencies of the
@@ -457,8 +455,7 @@ def show(app, elements, deps, except_, order, format_, downloadable):
with app.initialized():
dependencies = app.stream.load_selection(elements,
selection=deps,
- except_targets=except_,
- downloadable=downloadable)
+ except_targets=except_)
if order == "alpha":
dependencies = sorted(dependencies)