We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fdaa3c commit f48b714Copy full SHA for f48b714
pkg/osutil/user.go
@@ -114,7 +114,7 @@ func LimaUser(warn bool) (*user.User, error) {
114
if cache.err == nil {
115
if notAllowedUsernameRegex.MatchString(cache.u.Username) {
116
warning := fmt.Sprintf("local user %q is not a allowed (must not match %q); using %q username instead",
117
- cache.u.Username, isNotAllowedRegex.String(), fallbackUser)
+ cache.u.Username, notAllowedUsernameRegex.String(), fallbackUser)
118
cache.warnings = append(cache.warnings, warning)
119
cache.u.Username = fallbackUser
120
} else if !regexUsername.MatchString(cache.u.Username) {
0 commit comments