Skip to content

Commit

Permalink
genrule exec_tools -> tools
Browse files Browse the repository at this point in the history
See bazelbuild/bazel#19132

`exec_tools` and `tools` are equivalent since bazel 6, but the former
was removed in bazel 7.
  • Loading branch information
english committed Oct 22, 2024
1 parent a69e0ee commit 0e67d89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rules_clojure/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ java_binary(

genrule(
name="bootstrap-worker",
exec_tools=["bootstrap-deps"],
tools=["bootstrap-deps"],
cmd="""
mkdir -p worker-classes
$(location :bootstrap-deps) -m rules-clojure.bootstrap-worker $(location :libworker.jar)
Expand All @@ -40,7 +40,7 @@ genrule(

genrule(
name="bootstrap-compiler",
exec_tools=["bootstrap-deps"],
tools=["bootstrap-deps"],
cmd="""
mkdir -p compiler-classes
$(location :bootstrap-deps) -m rules-clojure.bootstrap-compiler $(location :libcompile.jar)
Expand Down

0 comments on commit 0e67d89

Please sign in to comment.