clarify verbose password prompt

This commit is contained in:
Michael Eischer 2020-09-30 17:25:54 +02:00
parent 94136132e3
commit aea9f7d286
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ func ReadPassword(opts GlobalOptions, prompt string) (string, error) {
password, err = readPasswordTerminal(os.Stdin, os.Stderr, prompt)
} else {
password, err = readPassword(os.Stdin)
Verbosef("read password from stdin\n")
Verbosef("reading repository password from stdin\n")
}
if err != nil {