Skip to content

Commit 0e67d89

Browse files
committed
genrule exec_tools -> tools
See bazelbuild/bazel#19132 `exec_tools` and `tools` are equivalent since bazel 6, but the former was removed in bazel 7.
1 parent a69e0ee commit 0e67d89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rules_clojure/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ java_binary(
3131

3232
genrule(
3333
name="bootstrap-worker",
34-
exec_tools=["bootstrap-deps"],
34+
tools=["bootstrap-deps"],
3535
cmd="""
3636
mkdir -p worker-classes
3737
$(location :bootstrap-deps) -m rules-clojure.bootstrap-worker $(location :libworker.jar)
@@ -40,7 +40,7 @@ genrule(
4040

4141
genrule(
4242
name="bootstrap-compiler",
43-
exec_tools=["bootstrap-deps"],
43+
tools=["bootstrap-deps"],
4444
cmd="""
4545
mkdir -p compiler-classes
4646
$(location :bootstrap-deps) -m rules-clojure.bootstrap-compiler $(location :libcompile.jar)

0 commit comments

Comments
 (0)