cli/command: PromptUserForCredentials: move "post" check for empty name

move the "post" check for username being empty inside the branch
that's handling the username, as it's the only branch where username
is mutated after checking if it's empty.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2024-10-19 12:01:25 +02:00
parent a55cfe5f82
commit 581cf36bd4
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 4 additions and 3 deletions

View File

@ -150,10 +150,11 @@ func PromptUserForCredentials(ctx context.Context, cli Cli, argUser, argPassword
if argUser == "" { if argUser == "" {
argUser = defaultUsername argUser = defaultUsername
} }
}
if argUser == "" { if argUser == "" {
return registrytypes.AuthConfig{}, errors.Errorf("Error: Non-null Username Required") return registrytypes.AuthConfig{}, errors.Errorf("Error: Non-null Username Required")
} }
}
if argPassword == "" { if argPassword == "" {
restoreInput, err := DisableInputEcho(cli.In()) restoreInput, err := DisableInputEcho(cli.In())
if err != nil { if err != nil {