Print message for password being read from stdin

Closes #1911
This commit is contained in:
Alexander Neumann 2018-07-31 20:21:18 +02:00
parent a717e9e6f7
commit 3678ec9ad8
1 changed files with 1 additions and 0 deletions

View File

@ -293,6 +293,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")
}
if err != nil {