mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
...
This commit is contained in:
parent
fb3a36b9aa
commit
7dae6e3945
1 changed files with 3 additions and 2 deletions
|
|
@ -95,9 +95,10 @@ func RunSSHAskpass() {
|
|||
}
|
||||
if is_fingerprint_check {
|
||||
response = strings.ToLower(response)
|
||||
if response == "y" {
|
||||
switch response {
|
||||
case "y":
|
||||
response = "yes"
|
||||
} else if response == "n" {
|
||||
case "n":
|
||||
response = "no"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue