Skip to content

Commit

Permalink
Bazel 027 support (#11)
Browse files Browse the repository at this point in the history
* replace single_file with allow_single_file

* remove allow_files
  • Loading branch information
Shachar Anchelovich authored and johnynek committed Jun 18, 2019
1 parent 334e241 commit cf372c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jar_jar.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def _jar_jar_impl(ctx):
jar_jar = rule(
implementation = _jar_jar_impl,
attrs = {
"input_jar": attr.label(allow_files=True, single_file=True),
"rules": attr.label(allow_files=True, single_file=True),
"input_jar": attr.label(allow_single_file=True),
"rules": attr.label(allow_single_file=True),
"_jarjar_runner": attr.label(executable=True, cfg="host", default=Label("@com_github_johnynek_bazel_jar_jar//:jarjar_runner")),
},
outputs = {
Expand Down

0 comments on commit cf372c2

Please sign in to comment.