From 2051266809772a8fc4367e54f13863bf5820ec09 Mon Sep 17 00:00:00 2001 From: shokollm <270575765+shokollm@users.noreply.github.com> Date: Mon, 6 Apr 2026 03:23:23 +0000 Subject: [PATCH] fix: remove doubled .kugetsu-worktrees path segment in issue_ref_to_worktree_path Fixes #179 - cmd_start fails due to incorrect worktree path being created with .kugetsu-worktrees/.kugetsu-worktrees/ instead of just the worktree name. --- skills/kugetsu/scripts/kugetsu-worktree.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/kugetsu/scripts/kugetsu-worktree.sh b/skills/kugetsu/scripts/kugetsu-worktree.sh index ea8984a..b032f6c 100755 --- a/skills/kugetsu/scripts/kugetsu-worktree.sh +++ b/skills/kugetsu/scripts/kugetsu-worktree.sh @@ -10,7 +10,7 @@ issue_ref_to_worktree_path() { local issue_ref="$1" local parent_dir="${2:-$WORKTREES_DIR}" local worktree_name=$(issue_ref_to_worktree_name "$issue_ref") - echo "$parent_dir/.kugetsu-worktrees/$worktree_name" + echo "$parent_dir/$worktree_name" } issue_ref_to_branch_name() { -- 2.49.1