Skip to content

Commit 1c564f6

Browse files
committed
refactor: use rules_shell runfiles lib
1 parent ee42fbd commit 1c564f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/private/interpreter.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ interpreter_binary = rule(
7272
mandatory = True,
7373
),
7474
"_bash_runfiles": attr.label(
75-
default = "@bazel_tools//tools/bash/runfiles",
75+
default = "@rules_shell//shell/runfiles",
7676
),
7777
"_template": attr.label(
7878
default = "//python/private:interpreter_tmpl.sh",

tests/bootstrap_impls/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ sh_test(
4444
},
4545
target_compatible_with = SUPPORTS_BOOTSTRAP_SCRIPT,
4646
deps = [
47-
"@bazel_tools//tools/bash/runfiles",
47+
"@rules_shell//shell/runfiles",
4848
],
4949
)
5050

tests/support/sh_py_run_test.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def sh_py_run_test(*, name, sh_src, py_src, **kwargs):
3737
srcs = [sh_src],
3838
data = [bin_name],
3939
deps = [
40-
"@bazel_tools//tools/bash/runfiles",
40+
"@rules_shell//shell/runfiles",
4141
],
4242
env = {
4343
"BIN_RLOCATION": "$(rlocationpaths {})".format(bin_name),

0 commit comments

Comments
 (0)