2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-27 17:43:27 +00:00
bazel-lib/lib/copy_directory.bzl

15 lines
394 B
Python
Raw Normal View History

2022-04-04 00:52:03 +00:00
"""A rule that copies a directory to another place.
The rule uses a Bash command on Linux/macOS/non-Windows, and a cmd.exe command
on Windows (no Bash is required).
"""
load(
"//lib/private:copy_directory.bzl",
_copy_directory = "copy_directory",
_copy_directory_action = "copy_directory_action",
2022-04-04 00:52:03 +00:00
)
copy_directory = _copy_directory
copy_directory_action = _copy_directory_action