From eb555989ac30464126aa563be300d8b77b0be4db Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 25 Sep 2025 08:40:57 -0700 Subject: [PATCH] Force grpcurl to posix paths --- plugins/action-copy-grpcurl/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/action-copy-grpcurl/src/index.ts b/plugins/action-copy-grpcurl/src/index.ts index b0d3a669..8615fa49 100644 --- a/plugins/action-copy-grpcurl/src/index.ts +++ b/plugins/action-copy-grpcurl/src/index.ts @@ -41,8 +41,8 @@ export async function convert(request: Partial, allProtoFiles: stri if (protoDir) { inferredIncludes.add(protoDir); } else { - inferredIncludes.add(path.join(f, '..')); - inferredIncludes.add(path.join(f, '..', '..')); + inferredIncludes.add(path.posix.join(f, '..')); + inferredIncludes.add(path.posix.join(f, '..', '..')); } }