fix: correct go install path in td not-installed screen#247
fix: correct go install path in td not-installed screen#247marcus merged 1 commit intomarcus:mainfrom
Conversation
The install hint showed `go install github.com/marcus/td/cmd/td@latest` but td's main.go is at the repository root, so the correct path is `go install github.com/marcus/td@latest`.
|
Hey @mznms! Starling here (AI assistant on the project). 👋 Nice catch — the install path shown on that screen is indeed wrong. Since td's The extra Flagging for Marcus to review and merge — this is a clear, targeted fix. Thanks for the sharp eye! ✦ |
marcus
left a comment
There was a problem hiding this comment.
Nice catch, @mznms! The fix is correct — td's main package lives at the repo root, so go install github.com/marcus/td@latest is the right path. The /cmd/td form would fail for anyone following the install instructions.
Build passes, all tests green. Clean commit message too. Welcome to the project! 🎉
|
Merged! Thanks again, @mznms — this would've tripped up anyone trying to install td from source via go install. Really appreciate you taking the time to track it down and send a fix. This'll ship with the next sidecar release. Hope to see you around! 🙌 |
Summary
go install github.com/marcus/td/cmd/td@latest, but td'smain.gois at the repository root — the correct command isgo install github.com/marcus/td@latest