From ba1bad0b0e56001b3ab0bc0fb7b6344c02cf3548 Mon Sep 17 00:00:00 2001 From: Scott Hart Date: Fri, 6 Mar 2026 10:51:31 -0500 Subject: [PATCH] doc: update library generation howto to use module path --- doc/contributor/howto-guide-adding-generated-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/contributor/howto-guide-adding-generated-libraries.md b/doc/contributor/howto-guide-adding-generated-libraries.md index 1fe3a39322e25..9071a269a08f8 100644 --- a/doc/contributor/howto-guide-adding-generated-libraries.md +++ b/doc/contributor/howto-guide-adding-generated-libraries.md @@ -97,7 +97,7 @@ and add the new service. Find the list of `.proto` files that will need to be included: ```shell -find "${bazel_output_base}/external/googleapis~/${subdir}" -name '*.proto' -print0 | +find "${bazel_output_base}/external/googleapis+/${subdir}" -name '*.proto' -print0 | xargs -0 grep -l '^service' ```