diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2019-10-02 10:58:13 +0100 |
---|---|---|
committer | Tristan Maat <tristan.maat@codethink.co.uk> | 2019-10-02 10:58:13 +0100 |
commit | 801900997c8908d072e503624381a4036ca51083 (patch) | |
tree | 0e2daea1e432712929ae6e6aa63da0b755b46ba2 /src/buildstream/_frontend/cli.py | |
parent | 1db77530d1b14fe8d3ceab9952ab6c75f85a6dea (diff) | |
download | buildstream-tlater/fix-casdless-completion.tar.gz |
Do not check for casd in bash completiontlater/fix-casdless-completion
This caused stacktraces when a user didn't have buildbox-casd
installed, even though it wasn't required for completion, even for
artifacts.
It does add a slightly ugly parameter to Context, long-term it might
make sense to create a special slimmed-down context for completion.
Diffstat (limited to 'src/buildstream/_frontend/cli.py')
-rw-r--r-- | src/buildstream/_frontend/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_frontend/cli.py b/src/buildstream/_frontend/cli.py index 931f531aa..9abab6473 100644 --- a/src/buildstream/_frontend/cli.py +++ b/src/buildstream/_frontend/cli.py @@ -133,7 +133,7 @@ def complete_target(args, incomplete): def complete_artifact(orig_args, args, incomplete): from .._context import Context - with Context() as ctx: + with Context(use_casd=False) as ctx: config = None if orig_args: |