From c9a5fdb36631f306d44e00fd41d224c3e737c035 Mon Sep 17 00:00:00 2001 From: Zach Whaley Date: Wed, 29 Sep 2021 15:36:59 -0500 Subject: [PATCH] cliconfig: Fix error message about invalid credentials helper type --- internal/command/cliconfig/credentials.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/cliconfig/credentials.go b/internal/command/cliconfig/credentials.go index 967f719eb..185baf9d5 100644 --- a/internal/command/cliconfig/credentials.go +++ b/internal/command/cliconfig/credentials.go @@ -46,7 +46,7 @@ func (c *Config) CredentialsSource(helperPlugins pluginDiscovery.PluginMetaSet) for givenType, givenConfig := range c.CredentialsHelpers { available := helperPlugins.WithName(givenType) if available.Count() == 0 { - log.Printf("[ERROR] Unable to find credentials helper %q; ignoring", helperType) + log.Printf("[ERROR] Unable to find credentials helper %q; ignoring", givenType) break }