diff options
Diffstat (limited to 'clone.go')
| -rw-r--r-- | clone.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -43,7 +43,7 @@ func clone(gopath string) (*gitpb.Repo, error) { log.Info("repo cloned failed", filepath.Join(forge.GetGoSrc(), gopath)) return nil, errors.New(fullgitdir + " was not created") } - log.Info("onward and upward") + log.Info("go-clone clone() onward and upward") return pb, nil } @@ -113,7 +113,9 @@ func recursiveClone(check *gitpb.Repo) error { func makeValidGoSum(check *gitpb.Repo) error { if check.Exists("go.mod") { + log.Info("makeValidGoSum() attempt SetPrimitive()") if err := check.SetPrimitive(); err != nil { + log.Info("SetPrimitive() failed", err) return err } } |
