We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea01fc2 commit caa2940Copy full SHA for caa2940
1 file changed
scripts/automatic_tag.go
@@ -96,7 +96,8 @@ func run() error {
96
97
// Prompts the user for the ssh key password.
98
func promptForPassword() (string, error) {
99
- fmt.Println("Enter ssh key passphrase (empty for no passphrase):")
+ fmt.Print("Enter SSH key passphrase (empty for no passphrase): ")
100
+ defer fmt.Print("\n")
101
bytePassword, err := term.ReadPassword(int(syscall.Stdin))
102
if err != nil {
103
return "", fmt.Errorf("read password: %w", err)
0 commit comments