Skip to content

Commit ce32021

Browse files
authored
Migrate exec_tools to tools on genrule (#3638)
`exec_tools` is a deprecated alias for `tools` with Bazel 6 and higher and may soon be removed from Bazel.
1 parent 84d1a59 commit ce32021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/core/transition/hermeticity_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ cc_library(
8585
genrule(
8686
name = "gen_go",
8787
outs = ["gen.go"],
88-
exec_tools = [":helper"],
88+
tools = [":helper"],
8989
cmd = "# Not needed for bazel cquery",
9090
)
9191
9292
genrule(
9393
name = "gen_indirect_go",
9494
outs = ["gen_indirect.go"],
95-
exec_tools = [":indirect_helper"],
95+
tools = [":indirect_helper"],
9696
cmd = "# Not needed for bazel cquery",
9797
)
9898

0 commit comments

Comments
 (0)