mirror of
https://github.com/therootcompany/golib.git
synced 2026-03-02 23:57:59 +00:00
The go.mod boundary check added to findMainPackages was stopping the --recursive walk from descending into child module directories, so modules like auth/csvauth/ were never found. The check was redundant: groupByModule already uses findModuleRoot to attribute each binary to its nearest go.mod ancestor, and initModuleGroup already skips modules with uncommitted changes (an untracked go.mod counts as an uncommitted change). Removing the stop restores the pre-regression behaviour.