Skip to content

Commit 8ecba44

Browse files
author
Paolo Tranquilli
committed
Rust: add experimental bazel target
1 parent 0516505 commit 8ecba44

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

rust/BUILD.bazel

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,20 @@ codeql_pkg_files(
4646
],
4747
)
4848

49-
codeql_pack(
50-
name = "rust",
51-
srcs = [
52-
":root-files",
53-
":tools",
54-
],
55-
)
49+
[
50+
codeql_pack(
51+
name = "-".join(parts),
52+
srcs = [
53+
":root-files",
54+
":tools",
55+
],
56+
pack_prefix = "/".join(parts),
57+
)
58+
for parts in (
59+
[
60+
"experimental",
61+
"rust",
62+
],
63+
["rust"],
64+
)
65+
]

0 commit comments

Comments
 (0)