diff options
author | Jürg Billeter <j@bitron.ch> | 2019-07-22 09:41:04 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2019-08-07 15:04:52 +0200 |
commit | 3b8459f175cf16290c3683cb972f065dd9c528df (patch) | |
tree | e2dd991738598f1351c05cbbe4c3dbb54a735c2e | |
parent | 50179a7e5930879acfd18d5c5a575f1403679908 (diff) | |
download | buildstream-juerg/remote-test.tar.gz |
cli.py: Require artifact contents to be present for `bst show`juerg/remote-test
With blob-based expiry in buildbox-casd, the presence of the artifact
proto will no longer be sufficient.
-rw-r--r-- | src/buildstream/_frontend/cli.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/buildstream/_frontend/cli.py b/src/buildstream/_frontend/cli.py index 276f81a6a..81ee4ad83 100644 --- a/src/buildstream/_frontend/cli.py +++ b/src/buildstream/_frontend/cli.py @@ -496,9 +496,6 @@ def show(app, elements, deps, except_, order, format_): $'---------- %{name} ----------\\n%{vars}' """ with app.initialized(): - # Do not require artifact directory trees or file contents to be present for `bst show` - app.context.set_artifact_directories_optional() - if not elements: elements = app.project.get_default_targets() |