mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
fix: resolve orchestration lint errors
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user