File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
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 @@ -138,7 +138,7 @@ genrule(
138
138
--proto_path=$$(dirname $$(dirname $$(dirname $(location any.proto)))) \
139
139
$(SRCS)
140
140
""" ,
141
- exec_tools = ["//:protoc" ],
141
+ tools = ["//:protoc" ],
142
142
visibility = ["//visibility:private" ],
143
143
)
144
144
You can’t perform that action at this time.
0 commit comments