Add a note about the dummy GHE hostname

This commit is contained in:
Mislav Marohnić 2021-07-26 18:59:53 +02:00
parent c598a1edc2
commit 82c6fb7d1a

View file

@ -80,9 +80,10 @@ func (rr *remoteResolver) Resolver() func() (context.Remotes, error) {
}
if len(cachedRemotes) == 0 {
dummyHostname := "example.com" // any non-github.com hostname is fine here
if config.IsHostEnv(src) {
return nil, fmt.Errorf("none of the git remotes configured for this repository correspond to the %s environment variable. Try adding a matching remote or unsetting the variable.", src)
} else if v, src, _ := cfg.GetWithSource("example.com", "oauth_token"); v != "" && config.IsEnterpriseEnv(src) {
} else if v, src, _ := cfg.GetWithSource(dummyHostname, "oauth_token"); v != "" && config.IsEnterpriseEnv(src) {
return nil, errors.New("set the GH_HOST environment variable to specify which GitHub host to use")
}
return nil, errors.New("none of the git remotes configured for this repository point to a known GitHub host. To tell gh about a new GitHub host, please use `gh auth login`")