Skip to content

Commit

Permalink
Bazel: Make build tool chain forward compatible
Browse files Browse the repository at this point in the history
Bazel 0.27 is going to flip incompatible Starlark flag:
--incompatible_string_join_requires_strings, see: [1] for
more details.

[1] bazelbuild/bazel#7802

Bug: Issue 10998
Change-Id: Ibd6c77af8ed1ce5dc86ce88996003f7cf695aa08
  • Loading branch information
davido committed Jun 8, 2019
1 parent 2ca54d9 commit 75076df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bzl/maven_jar.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def _maven_jar_impl(ctx):
out = ctx.execute(args)

if out.return_code:
fail("failed %s: %s" % (" ".join(args), out.stderr))
fail("failed %s: %s" % (args, out.stderr))

srcjar = None
if ctx.attr.src_sha1 or ctx.attr.attach_source:
Expand Down

0 comments on commit 75076df

Please sign in to comment.