summaryrefslogtreecommitdiff
path: root/clone.go
diff options
context:
space:
mode:
Diffstat (limited to 'clone.go')
-rw-r--r--clone.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/clone.go b/clone.go
index 91edf62..52bfabd 100644
--- a/clone.go
+++ b/clone.go
@@ -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
}
}