From 4c71235377f35e3d0b43db155f327a7350432acd Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sun, 26 Oct 2025 13:24:09 -0700 Subject: [PATCH] Fix syntax error in onboard.go from PR #154 The backtick escaping was missing around .beads/issues.jsonl on line 69. --- cmd/bd/onboard.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bd/onboard.go b/cmd/bd/onboard.go index 79ffe91a..f6f4b8d4 100644 --- a/cmd/bd/onboard.go +++ b/cmd/bd/onboard.go @@ -66,7 +66,7 @@ bd close bd-42 --reason "Completed" --json 4. **Discover new work?** Create linked issue: - ` + "`bd create \"Found bug\" -p 1 --deps discovered-from:`" + ` 5. **Complete**: ` + "`bd close --reason \"Done\"`" + ` -6. **Commit together**: Always commit the `.beads/issues.jsonl` file together with the code changes so issue state stays in sync with code state +6. **Commit together**: Always commit the ` + "`.beads/issues.jsonl`" + ` file together with the code changes so issue state stays in sync with code state ### Auto-Sync