Explorar o código

Fix logging of repo paths

Luis Pollo %!s(int64=7) %!d(string=hai) anos
pai
achega
7a3d155675
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/repo.go

+ 2 - 2
src/repo.go

@@ -83,10 +83,10 @@ func (repoInfo *RepoInfo) clone() error {
 			})
 		}
 	} else if repoInfo.path != "" {
-		log.Infof("opening %s", opts.RepoPath)
+		log.Infof("opening %s", repoInfo.path)
 		repo, err = git.PlainOpen(repoInfo.path)
 		if err != nil {
-			log.Errorf("unable to open %s", opts.RepoPath)
+			log.Errorf("unable to open %s", repoInfo.path)
 		}
 	} else {
 		// cloning to memory