diff options
| author | Jeff Carr <[email protected]> | 2024-12-15 17:03:41 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-15 17:03:41 -0600 |
| commit | 41671d129886258aeed0ed65287e15ad980accd7 (patch) | |
| tree | a8236049bef06088ce1e474b9399be0f3960c6eb /clone.go | |
| parent | 882c448b85ebf738cb1ab3803115c0701b809d90 (diff) | |
hmm.v0.7.0
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 } } |
