Skip to content

Commit

Permalink
Merge pull request #162 from mattmoor/fix-push-all
Browse files Browse the repository at this point in the history
Fix the runfiles path of the subcommands of push-all.bzl
  • Loading branch information
mattmoor authored Sep 23, 2017
2 parents 6eea497 + 1bc400d commit efc43c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/contrib/push-all.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _impl(ctx):
template = ctx.file._all_tpl,
substitutions = {
"%{push_statements}": "\n".join([
_get_runfile_path(ctx, command) + "&"
"PYTHON_RUNFILES=${RUNFILES} " + _get_runfile_path(ctx, command) + "&"
for command in scripts
]),
},
Expand Down

0 comments on commit efc43c9

Please sign in to comment.