mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 10:10:08 -08:00
trimspace on piped passwords
This commit is contained in:
parent
6f2b610736
commit
6667585605
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ func getPassword() string {
|
||||||
}
|
}
|
||||||
reader := bufio.NewReader(os.Stdin)
|
reader := bufio.NewReader(os.Stdin)
|
||||||
text, _ := reader.ReadString('\n')
|
text, _ := reader.ReadString('\n')
|
||||||
return text
|
return strings.TrimSpace(text)
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue