rules_pkg
rules_pkg copied to clipboard
Set attributes for specific files in pkg_files?
This works:
pkg_files(
name = "app_files",
srcs = [
":app",
],
attributes = pkg_attributes(mode = "0777"),
)
but it sets the mode for every file.
How can I set the mode for only one specific file?