rules_pkg icon indicating copy to clipboard operation
rules_pkg copied to clipboard

Set attributes for specific files in pkg_files?

Open njlr opened this issue 1 year ago • 0 comments

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?

njlr avatar Nov 28 '24 17:11 njlr