Strip "src" from file name of plugin.proto

In 22.x, we accidentally omitted stripping the "src" import prefix for plugin.proto. We stripped the prefix in 21.x and for all other well known types in 22.x.

This reverts that unintentional change.
deannagarcia-patch-1
deannagarcia 2 years ago committed by GitHub
parent 26d3ca13a3
commit 9c89a70e6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/google/protobuf/compiler/BUILD.bazel

@ -20,6 +20,7 @@ proto_library(
"//:__pkg__", "//:__pkg__",
"//pkg:__pkg__", "//pkg:__pkg__",
], ],
strip_import_prefix = "src",
deps = ["//:descriptor_proto"], deps = ["//:descriptor_proto"],
) )

Loading…
Cancel
Save