Skip to content

Commit d739c21

Browse files
committed
fix issue #49 a new line after entering the password
1 parent f7d03af commit d739c21

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

login.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ func promptForPassword(serverName string) (string, error) {
5252
fmt.Printf("Please enter password for '%s' (input hidden) :> ", serverName)
5353
// the int conversion is required for the windows build to succeed
5454
password, err := term.ReadPassword(int(syscall.Stdin))
55+
println()
5556
return string(password), err
5657
}
5758

0 commit comments

Comments
 (0)