mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-11 10:32:12 +08:00
fix: resolve orchestration lint errors
This commit is contained in:
parent
4d4ba25d11
commit
ad4ef58a8e
@ -329,12 +329,12 @@ function canonicalizePath(targetPath) {
|
||||
|
||||
try {
|
||||
return fs.realpathSync.native(resolvedPath);
|
||||
} catch (error) {
|
||||
} catch (_error) {
|
||||
const parentPath = path.dirname(resolvedPath);
|
||||
|
||||
try {
|
||||
return path.join(fs.realpathSync.native(parentPath), path.basename(resolvedPath));
|
||||
} catch (parentError) {
|
||||
} catch (_parentError) {
|
||||
return resolvedPath;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user