Add a note about the dummy GHE hostname
This commit is contained in:
parent
c598a1edc2
commit
82c6fb7d1a
1 changed files with 2 additions and 1 deletions
|
|
@ -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`")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue