Post-login msg: Ignore if password is empty
@@ -65,6 +65,9 @@ func isUsingDefaultRegistry(cmdArgs []string) bool {
}
func isUsingPassword(pass string) bool {
+ if pass == "" { // ignore if no password (or SSO)
+ return false
+ }
if _, err := uuid.ParseUUID(pass); err == nil {
return false
@@ -74,6 +74,11 @@ func TestIsUsingPassword(t *testing.T) {
"mypass",
true,
},
+ {
+ "no password or sso",
+ "",
+ false,
+ },
{
"personal access token",
"1508b8bd-b80c-452d-9a7a-ee5607c41bcd",