commit | 9f879355d7d6b75eb4442ff0ffef6edd717ff578 | [log] [tgz] |
---|---|---|
author | Chris Parsons <cparsons@google.com> | Mon Nov 19 15:46:19 2018 -0500 |
committer | Chris Parsons <cparsons@google.com> | Mon Nov 19 15:46:19 2018 -0500 |
tree | efea9f7fd2f1e5c4fe19b1c2b1906e9311456d45 | |
parent | 7be79622b76e1dd4465e1e3d366142edcfd6bccc [diff] |
pass depset to ctx.runfiles transitive_files instead of list
diff --git a/bzl_library.bzl b/bzl_library.bzl index 545d496..06e1b34 100644 --- a/bzl_library.bzl +++ b/bzl_library.bzl
@@ -32,7 +32,7 @@ # a separate program, or from `tools` of a genrule(). DefaultInfo( files = all_files, - runfiles = ctx.runfiles(transitive_files = all_files.to_list()), + runfiles = ctx.runfiles(transitive_files = all_files), ), # We also define our own provider struct, for aggregation and testing.