You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
returnRepositoryInfo{},fmt.Errorf("an erroroccured while retrieving <%s/%s/%s> repository info:\n%s",owner,client.vcsInfo.Project,repository,err.Error())
522
+
returnRepositoryInfo{},fmt.Errorf("an erroroccurred while retrieving <%s/%s/%s> repository info:\n%s",owner,client.vcsInfo.Project,repository,err.Error())
523
523
}
524
524
ifresponse==nil {
525
-
returnRepositoryInfo{},fmt.Errorf("failed toretreive <%s/%s/%s> repository info, received empty response",owner,client.vcsInfo.Project,repository)
525
+
returnRepositoryInfo{},fmt.Errorf("failed toretrieve <%s/%s/%s> repository info, received empty response",owner,client.vcsInfo.Project,repository)
526
526
}
527
527
ifresponse.Project==nil {
528
-
returnRepositoryInfo{},fmt.Errorf("failed to retreive <%s/%s/%s> repository info, received empty project info",owner,client.vcsInfo.Project,repository)
528
+
returnRepositoryInfo{},fmt.Errorf("failed to retrieve <%s/%s/%s> repository info, received empty project info",owner,client.vcsInfo.Project,repository)
529
+
}
530
+
ifresponse.RemoteUrl==nil {
531
+
returnRepositoryInfo{},fmt.Errorf("failed to retrieve <%s/%s/%s> repository info, received nil HTTP clone URL",owner,client.vcsInfo.Project,repository)
532
+
}
533
+
ifresponse.SshUrl==nil {
534
+
returnRepositoryInfo{},fmt.Errorf("failed to retrieve <%s/%s/%s> repository info, received nil SSH clone URL",owner,client.vcsInfo.Project,repository)