We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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