Skip to content

Commit

Permalink
Use ctx.label instead of ctx in progress messages
Browse files Browse the repository at this point in the history
String representation of ctx will soon be changed, ctx.label should be used
explicitly.

PiperOrigin-RevId: 164016232
  • Loading branch information
vladmos authored and dslomov committed Aug 3, 2017
1 parent 1e509a3 commit d77db9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build_defs/apple/apple_genrule.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _apple_genrule(ctx):
outputs=list(files_to_build),
env=env,
command=argv,
progress_message="%s %s" % (message, ctx),
progress_message="%s %s" % (message, ctx.label),
mnemonic="Genrule",
input_manifests=runfiles_manifests)

Expand Down

0 comments on commit d77db9d

Please sign in to comment.