File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
sdk-platform-java/gax-java Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,10 @@ def com_google_api_gax_java_repositories():
5656 patch_cmds = [
5757 "mkdir -p bazel/common" ,
5858 "touch bazel/common/BUILD" ,
59- "echo 'load(\" @@rules_proto//proto:defs.bzl\" , _ProtoInfo = \" ProtoInfo\" )' > bazel/common/proto_info.bzl" ,
60- "echo 'ProtoInfo = _ProtoInfo' >> bazel/common/proto_info.bzl" ,
59+ "touch bazel/BUILD" ,
60+ "cat <<'EOF' > bazel/common/proto_info.bzl\n load(\" @rules_proto//proto:defs.bzl\" , _ProtoInfo = \" ProtoInfo\" )\n ProtoInfo = _ProtoInfo\n EOF" ,
61+ "cat <<'EOF' > bazel/proto_library.bzl\n def proto_library(**kwargs):\n native.proto_library(**kwargs)\n EOF" ,
62+ "cat <<'EOF' > bazel/java_proto_library.bzl\n def java_proto_library(**kwargs):\n native.java_proto_library(**kwargs)\n EOF" ,
6163 ],
6264 )
6365
You can’t perform that action at this time.
0 commit comments