fix(done): use ResolveBeadsDir in getDispatcherFromBead

Fixes PR #39 to follow the pattern established in PR #54 - all beads
initialization in done.go should use ResolveBeadsDir to support
.beads/redirect files in worktrees.
This commit is contained in:
jack
2026-01-04 23:10:11 -08:00
committed by Steve Yegge
parent b207d2976b
commit fd3cb6133e

View File

@@ -445,7 +445,7 @@ func getDispatcherFromBead(cwd, issueID string) string {
return ""
}
bd := beads.New(cwd)
bd := beads.New(beads.ResolveBeadsDir(cwd))
issue, err := bd.Show(issueID)
if err != nil {
return ""