mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
Fixes
This commit is contained in:
@@ -95,7 +95,7 @@ class WorkspaceTracker {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private normalizeFilePath(filePath: string): string {
|
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
|
return filePath.endsWith("/") ? resolvedPath + "/" : resolvedPath
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user