Fix `checkout` for unavailable fork - again

This commit is contained in:
Mislav Marohnić 2016-10-03 20:37:45 +02:00
Родитель 14c163f751
Коммит 6a1f1db6bf
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -92,7 +92,7 @@ func transformCheckoutArgs(args *Args) error {
var headRemote *github.Remote
if pullRequest.IsSameRepo() {
headRemote = baseRemote
} else {
} else if pullRequest.Head.Repo != nil {
headRemote, _ = repo.RemoteForRepo(pullRequest.Head.Repo)
}