From 0e67d892701f40077314c4fa007202c44957ec10 Mon Sep 17 00:00:00 2001 From: Jamie English Date: Tue, 22 Oct 2024 22:03:15 +0100 Subject: [PATCH] genrule exec_tools -> tools See https://github.com/bazelbuild/bazel/issues/19132 `exec_tools` and `tools` are equivalent since bazel 6, but the former was removed in bazel 7. --- src/rules_clojure/BUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rules_clojure/BUILD b/src/rules_clojure/BUILD index e1a5846..b1f7f07 100644 --- a/src/rules_clojure/BUILD +++ b/src/rules_clojure/BUILD @@ -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) @@ -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)