File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def inline_sh_binary(
32
32
native .genrule (
33
33
name = name + "_genrule" ,
34
34
srcs = srcs ,
35
- exec_tools = tools ,
35
+ tools = tools ,
36
36
outs = [name + ".sh" ],
37
37
cmd = "cat <<'EOF' >$(OUTS)\n #!/bin/bash -exu\n %s\n EOF\n " % cmd ,
38
38
visibility = ["//visibility:private" ],
@@ -77,7 +77,7 @@ def inline_sh_test(
77
77
native .genrule (
78
78
name = name + "_genrule" ,
79
79
srcs = srcs ,
80
- exec_tools = tools ,
80
+ tools = tools ,
81
81
outs = [name + ".sh" ],
82
82
cmd = "cat <<'EOF' >$(OUTS)\n #!/bin/bash -exu\n %s\n EOF\n " % cmd ,
83
83
visibility = ["//visibility:private" ],
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ genrule(
42
42
for wkt in _OBJC_WKT_NAMES
43
43
for ext in _OBJC_EXTS
44
44
]),
45
- exec_tools = ["//:protoc" ],
45
+ tools = ["//:protoc" ],
46
46
tags = ["manual" ],
47
47
)
48
48
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ genrule(
139
139
--proto_path=$$(dirname $$(dirname $$(dirname $(location any.proto)))) \
140
140
$(SRCS)
141
141
""" ,
142
- exec_tools = ["//:protoc" ],
142
+ tools = ["//:protoc" ],
143
143
visibility = ["//visibility:private" ],
144
144
)
145
145
You can’t perform that action at this time.
0 commit comments