mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 01:07:46 +00:00
[ide-mode] Fix path delimiter for multi-root workspaces on Windows (#6273)
Co-authored-by: Jacob Richman <jacob314@gmail.com>
This commit is contained in:
committed by
GitHub
parent
3c0af3654a
commit
4896c7739f
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user