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, '..', '..')); } }