minor fix

This commit is contained in:
Jeff Carr 2025-05-29 19:18:31 -05:00
parent f9331ea548
commit a0525067a0
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ var cleanVerbose bool = false
func (f *Forge) CleanGoDepsCheckOk(check *gitpb.Repo) error {
var err error = nil
var fixes [][]string
log.Printf("current repo %s go dependancy count: %d", check.GetGoPath(), check.GoDepsLen())
log.Printf("%s repo go dependancy count: %d\n", check.GetGoPath(), check.GoDepsLen())
if check.GoDeps == nil {
return errors.New("check.GoDeps == nil")
}