Merge pull request #1953 from amineck/no_pass

Post-login msg: Ignore if password is empty
This commit is contained in:
Mathieu Champlon 2021-07-28 07:46:17 +02:00 committed by GitHub
commit f09336e519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -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
}

View File

@ -74,6 +74,11 @@ func TestIsUsingPassword(t *testing.T) {
"mypass",
true,
},
{
"no password or sso",
"",
false,
},
{
"personal access token",
"1508b8bd-b80c-452d-9a7a-ee5607c41bcd",