Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3b0ea commit 50432b8Copy full SHA for 50432b8
cli/server.go
@@ -650,8 +650,9 @@ flags, and YAML configuration. The precedence is as follows:
650
return xerrors.Errorf("read git auth providers from env: %w", err)
651
}
652
653
+ cfg.GitAuthProviders.Value = append(cfg.GitAuthProviders.Value, gitAuthEnv...)
654
gitAuthConfigs, err := gitauth.ConvertConfig(
- append(cfg.GitAuthProviders.Value, gitAuthEnv...),
655
+ cfg.GitAuthProviders.Value,
656
cfg.AccessURL.Value(),
657
)
658
if err != nil {
0 commit comments