Explorar el Código

Fixed bug where the repo name was removed on a user or org audit. (#344)

Alexander Curtiss hace 6 años
padre
commit
01d73028f8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      hosts/github.go

+ 1 - 1
hosts/github.go

@@ -99,10 +99,10 @@ func (g *Github) Audit() {
 
 	for _, repo := range githubRepos {
 		r := audit.NewRepo(g.manager)
-		r.Name = *repo.Name
 		err := r.Clone(&git.CloneOptions{
 			URL: *repo.CloneURL,
 		})
+		r.Name = *repo.Name
 		if err != nil {
 			log.Warn("unable to clone via https and access token, attempting with ssh now")
 			auth, err := options.SSHAuth(g.manager.Opts)