docs: reword "earthly" -> "earthbuild" in Go comments#644
Conversation
Rewords free-text prose references to the project/tool in Go doc/inline comments (e.g. "size of the earthly cache" -> "earthbuild cache", "the Earthly version" -> "the Earthbuild version"). Conservatively scoped: only unambiguous prose was changed. Left verbatim were env-var docs (EARTHLY_*), code identifiers (EarthlyGitHash, etc.), config/paths (~/.earthly, .earthlyignore), container/artifact names (earthly-buildkitd), URLs (github.com/earthly/...), and literal command examples (the binary is still invoked as `earthly`). The Go corpus is predominantly these technical tokens, so the safe prose yield is small. Affected packages build; changed files are gofmt-clean. Reduces "earthly" line count by 6. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
🎉 Are we earthbuild yet?Great progress! You've reduced "earthly" occurrences by 6 (0.11%) 📈 Overall Progress
📁 Changes by file type:
Keep up the great work migrating from Earthly to Earthbuild! 🚀 💡 Tips for finding more occurrencesRun locally to see detailed breakdown: ./.github/scripts/count-earthly.shNote that the goal is not to reach 0. |
There was a problem hiding this comment.
Code Review
This pull request updates several code comments across multiple files to rename references from 'earthly' or 'Earthly' to 'earthbuild' or 'Earthbuild'. I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
What
Rewords unambiguous free-text prose references to the project/tool in Go doc/inline comments (e.g.
// size of the earthly cache→earthbuild cache,// the Earthly version→the Earthbuild version).6 lines across 6 files.
Scope / safety
Conservatively scoped to clear prose. Left verbatim:
EARTHLY_*) and code identifiers (EarthlyGitHash,warnDeprecatedEarthlyEnvVars, ...)~/.earthly,.earthlyignore) and container/artifact names (earthly-buildkitd)github.com/earthly/...) and literal command examples (the binary is still invoked asearthly)The Go corpus is predominantly these technical tokens (there are no unexported
earthlyidentifiers, and exported ones map to the user-facingEARTHLY_*API), so the safe prose yield here is intentionally small.Verification
go build ./...); changed files aregofmt-clean.earthlyline count by 6.🤖 Generated with Claude Code