Skip to content

Commit

Permalink
Migrate exec_tools to tools on genrule (#3638)
Browse files Browse the repository at this point in the history
`exec_tools` is a deprecated alias for `tools` with Bazel 6 and higher
and may soon be removed from Bazel.
  • Loading branch information
fmeum committed Jul 31, 2023
1 parent 84d1a59 commit ce32021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/transition/hermeticity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ cc_library(
genrule(
name = "gen_go",
outs = ["gen.go"],
exec_tools = [":helper"],
tools = [":helper"],
cmd = "# Not needed for bazel cquery",
)
genrule(
name = "gen_indirect_go",
outs = ["gen_indirect.go"],
exec_tools = [":indirect_helper"],
tools = [":indirect_helper"],
cmd = "# Not needed for bazel cquery",
)
Expand Down

0 comments on commit ce32021

Please sign in to comment.