diff --git a/scripts/lib/tmux-worktree-orchestrator.js b/scripts/lib/tmux-worktree-orchestrator.js index d89a803d..4cf8bb4d 100644 --- a/scripts/lib/tmux-worktree-orchestrator.js +++ b/scripts/lib/tmux-worktree-orchestrator.js @@ -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; } }