docs: fix load path for copy_file_to_bin_action (#673)
This commit is contained in:
parent
ddac9c46c3
commit
975a933e24
|
@ -29,7 +29,7 @@ To use `copy_file_to_bin_action` in your own rules, you need to include the tool
|
|||
in your rule definition. For example:
|
||||
|
||||
```starlark
|
||||
load("@aspect_bazel_lib//lib:copy_file.bzl", "COPY_FILE_TO_BIN_TOOLCHAINS")
|
||||
load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "COPY_FILE_TO_BIN_TOOLCHAINS")
|
||||
|
||||
my_rule = rule(
|
||||
...,
|
||||
|
|
|
@ -32,7 +32,7 @@ def copy_file_to_bin_action(ctx, file):
|
|||
in your rule definition. For example:
|
||||
|
||||
```starlark
|
||||
load("@aspect_bazel_lib//lib:copy_file.bzl", "COPY_FILE_TO_BIN_TOOLCHAINS")
|
||||
load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "COPY_FILE_TO_BIN_TOOLCHAINS")
|
||||
|
||||
my_rule = rule(
|
||||
...,
|
||||
|
|
Loading…
Reference in New Issue