mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
Fixes
This commit is contained in:
parent
16fdaff8b3
commit
9338f2a45f
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ class WorkspaceTracker {
|
|||
}
|
||||
|
||||
private normalizeFilePath(filePath: string): string {
|
||||
const resolvedPath = path.resolve(filePath)
|
||||
const resolvedPath = cwd ? path.resolve(cwd, filePath) : path.resolve(filePath)
|
||||
return filePath.endsWith("/") ? resolvedPath + "/" : resolvedPath
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue