From 7b40097396e2eda170609afe32b66f9c140b8fea Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 27 Feb 2026 00:24:49 -0700 Subject: [PATCH] fix(cmd/auth-proxy): show all working credentials, not just the first one --- cmd/auth-proxy/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/auth-proxy/main.go b/cmd/auth-proxy/main.go index 59dafc8..0e22a3b 100644 --- a/cmd/auth-proxy/main.go +++ b/cmd/auth-proxy/main.go @@ -293,8 +293,8 @@ func run(cli *MainConfig) { } if usableRoles == 0 { fmt.Fprintf(os.Stderr, "Current credentials, tokens, and permissions:\n") - fmt.Fprintf(os.Stderr, " %s\t%s\t%s\n", u.Purpose, u.ID(), strings.Join(u.Roles, " ")) } + fmt.Fprintf(os.Stderr, " %s\t%s\t%s\n", u.Purpose, u.ID(), strings.Join(u.Roles, " ")) usableRoles += 1 }