Merge branch 'release2.3.3' into update-release-process-documentation

This commit is contained in:
asdf 2020-09-08 05:21:08 +00:00
commit ad9b5f567e
1 changed files with 1 additions and 1 deletions

View File

@ -102,6 +102,7 @@ func Getch() rune {
func GetLine(prefix string) (string, error) {
termios.SetLineMode()
defer termios.SetCharMode()
reader := bufio.NewReader(os.Stdin)
fmt.Print(prefix)
@ -110,7 +111,6 @@ func GetLine(prefix string) (string, error) {
return "", err
}
termios.SetCharMode()
return text[:len(text)-1], nil
}