Skip to content

Commit baa8dc0

Browse files
committed
Make binary mandatory
1 parent 167aa38 commit baa8dc0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/build_defs.bzl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ def _single_binary_toolchain_rule_impl(ctx):
6363
_single_binary_toolchain_rule = rule(
6464
implementation = _single_binary_toolchain_rule_impl,
6565
attrs = {
66-
"binary": attr.label(allow_single_file = True),
66+
"binary": attr.label(
67+
allow_single_file = True,
68+
mandatory = True,
69+
),
6770
},
6871
)
6972

0 commit comments

Comments
 (0)