mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-24 09:48:28 +02:00
Force grpcurl to posix paths
This commit is contained in:
@@ -41,8 +41,8 @@ export async function convert(request: Partial<GrpcRequest>, allProtoFiles: stri
|
|||||||
if (protoDir) {
|
if (protoDir) {
|
||||||
inferredIncludes.add(protoDir);
|
inferredIncludes.add(protoDir);
|
||||||
} else {
|
} else {
|
||||||
inferredIncludes.add(path.join(f, '..'));
|
inferredIncludes.add(path.posix.join(f, '..'));
|
||||||
inferredIncludes.add(path.join(f, '..', '..'));
|
inferredIncludes.add(path.posix.join(f, '..', '..'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user