We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071296f commit eee416bCopy full SHA for eee416b
1 file changed
src/test/shell/bazel/BUILD
@@ -1,6 +1,5 @@
1
load("@bazel_skylib//rules:write_file.bzl", "write_file")
2
load("//:workspace_deps.bzl", "gen_workspace_stanza")
3
-load("//src/tools/bzlmod:utils.bzl", "get_canonical_repo_name")
4
5
package(default_visibility = ["//visibility:private"])
6
@@ -221,7 +220,9 @@ sh_test(
221
220
write_file(
222
name = "gen_rules_java_repo_name",
223
out = "RULES_JAVA_REPO_NAME",
224
- content = [get_canonical_repo_name("@rules_java")],
+ # TODO: Revert to the following when building with Bazel 7.1.0.
+ # content = [get_canonical_repo_name("@rules_java")],
225
+ content = ["rules_java~"],
226
)
227
228
sh_test(
0 commit comments