From 4896c7739f57b4e475754854c217cdd1dbf7deaa Mon Sep 17 00:00:00 2001 From: Sunny Sachanandani Date: Fri, 15 Aug 2025 15:58:31 -0700 Subject: [ide-mode] Fix path delimiter for multi-root workspaces on Windows (#6273) Co-authored-by: Jacob Richman --- packages/core/src/ide/ide-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/core/src/ide/ide-client.ts') diff --git a/packages/core/src/ide/ide-client.ts b/packages/core/src/ide/ide-client.ts index 5ec0bb5c..f8ba6ef5 100644 --- a/packages/core/src/ide/ide-client.ts +++ b/packages/core/src/ide/ide-client.ts @@ -272,7 +272,7 @@ export class IdeClient { }; } - const ideWorkspacePaths = ideWorkspacePath.split(':'); + const ideWorkspacePaths = ideWorkspacePath.split(path.delimiter); const realCwd = getRealPath(cwd); const isWithinWorkspace = ideWorkspacePaths.some((workspacePath) => { const idePath = getRealPath(workspacePath); -- cgit v1.2.3