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