summaryrefslogtreecommitdiff
path: root/src/buildstream/_frontend/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_frontend/cli.py')
-rw-r--r--src/buildstream/_frontend/cli.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/buildstream/_frontend/cli.py b/src/buildstream/_frontend/cli.py
index 1fcf85953..5b2e60d49 100644
--- a/src/buildstream/_frontend/cli.py
+++ b/src/buildstream/_frontend/cli.py
@@ -1233,12 +1233,15 @@ def artifact_list_contents(app, artifacts):
# Artifact Delete Command #
###################################################################
@artifact.command(name='delete', short_help="Remove artifacts from the local cache")
+@click.option('--deps', '-d', default='none',
+ type=click.Choice(['none', 'run', 'build', 'all']),
+ help="The dependencies to delete (default: none)")
@click.argument('artifacts', type=click.Path(), nargs=-1)
@click.pass_obj
-def artifact_delete(app, artifacts):
+def artifact_delete(app, artifacts, deps):
"""Remove artifacts from the local cache"""
with app.initialized():
- app.stream.artifact_delete(artifacts)
+ app.stream.artifact_delete(artifacts, selection=deps)
##################################################################