Skip to content

Commit 329a07a

Browse files
committed
allow ".*_application" in bazel query filter
1 parent 5626be4 commit 329a07a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/tasks/module/bazel.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ local function query_bazel_targets()
2020
end
2121

2222
-- Fall back to bazel query if .bazeltargets doesn't exist
23-
local allTargets = vim.fn.systemlist('bazel query \'kind(".*_binary|.*_test|.*_library", //...)\'')
23+
local allTargets = vim.fn.systemlist('bazel query \'kind(".*_binary|.*_test|.*_library|.*_application", //...)\'')
2424
local targets = {}
2525
for _, candidate in ipairs(allTargets) do
2626
local bazelTarget = string.gmatch(candidate, '//.+')()

0 commit comments

Comments
 (0)