Fix shadow issue in CI

This commit is contained in:
Cristian Le 2021-05-04 13:47:17 +09:00
parent 484b30d0a1
commit e5b206c1de

View file

@ -354,7 +354,7 @@ func DefaultIdentityFunc(ctx context.Context, p Interface, email string, usernam
if !sshUserRegex.MatchString(name) {
return nil, errors.Errorf("invalid principal '%s' from email '%s'", name, email)
}
usernames := append(usernames, name)
usernames = append(usernames, name)
if i := strings.LastIndex(email, "@"); i >= 0 {
usernames = append(usernames, email[:i])
}