cmd/utils: removed password line endings when not using liner.

This commit is contained in:
Ramesh Nair 2016-03-23 22:53:20 +08:00
parent b3b110bc95
commit 6f30034413
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ func PromptPassword(prompt string, warnTerm bool) (string, error) {
}
fmt.Print(prompt)
input, err := bufio.NewReader(os.Stdin).ReadString('\n')
input = strings.TrimRight(input, "\r\n")
fmt.Println()
return input, err
}