docs: fix load path for copy_file_to_bin_action (#673)

This commit is contained in:
Tobias Schlatter 2023-11-30 19:58:48 +01:00 committed by GitHub
parent ddac9c46c3
commit 975a933e24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
docs/copy_to_bin.md generated
View File

@ -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(
...,

View File

@ -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(
...,