From c155531402a2ca19490aa81818a0f4f58f73cabf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Wed, 29 Dec 2021 15:07:52 +0100 Subject: [PATCH] chore(bazel): update completion to f146202c --- plugins/bazel/_bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bazel/_bazel b/plugins/bazel/_bazel index 827ce545c..c34c572b0 100644 --- a/plugins/bazel/_bazel +++ b/plugins/bazel/_bazel @@ -164,7 +164,7 @@ _get_build_targets() { ;; esac completions=(${$(_bazel_b query "kind(\"${rule_re}\", ${pkg}:all)" 2>/dev/null)##*:}) - if ( (( ${#completions} > 0 )) && [[ $target_type != run ]] ); then + if ( (( ${#completions} > 0 )) && [[ $target_type != bin ]] ); then completions+=(all) fi echo ${completions[*]}