Просмотр исходного кода

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

Alexander Curtiss 6 лет назад
Родитель
Сommit
01d73028f8
1 измененных файлов с 1 добавлено и 1 удалено
  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)