From bdf4befb3e5855cd22983ce158bf4d1e8c6313ee Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Thu, 12 Mar 2026 09:35:03 -0700 Subject: [PATCH] fix: resolve orchestration lint errors --- scripts/lib/tmux-worktree-orchestrator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }