Parcourir la source

Fix logging of repo paths

Luis Pollo il y a 7 ans
Parent
commit
7a3d155675
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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