Skip to content

Commit

Permalink
allow changes to req_files to break cache
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeliaw committed Apr 9, 2019
1 parent 4713cf3 commit f068bc1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pex/pex_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ def _pex_binary_impl(ctx):
for dep in ctx.attr.deps:
transitive_files += dep.default_runfiles.files

for req_file in ctx.attr.req_files:
transitive_files += req_file.files

runfiles = ctx.runfiles(
collect_default = True,
transitive_files = transitive_files,
Expand Down

0 comments on commit f068bc1

Please sign in to comment.