forked from TrueCloudLab/certificates
Fix shadow issue in CI
This commit is contained in:
parent
08e5ec6ad1
commit
21732f213b
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ func DefaultIdentityFunc(ctx context.Context, p Interface, email string, usernam
|
||||||
if !sshUserRegex.MatchString(name) {
|
if !sshUserRegex.MatchString(name) {
|
||||||
return nil, errors.Errorf("invalid principal '%s' from email '%s'", name, email)
|
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 {
|
if i := strings.LastIndex(email, "@"); i >= 0 {
|
||||||
usernames = append(usernames, email[:i])
|
usernames = append(usernames, email[:i])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue