We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a25a4 commit a2c272bCopy full SHA for a2c272b
pkg/commands/login.go
@@ -32,7 +32,6 @@ type LoginArgs struct {
32
33
// selectKey allows to choice a key in ~/.ssh
34
func selectKey(args *LoginArgs) error {
35
- fmt.Println("Do you want to upload an SSH key ?")
36
home, err := config.GetHomeDir()
37
if err != nil {
38
return err
@@ -52,6 +51,7 @@ func selectKey(args *LoginArgs) error {
52
51
if len(pubs) == 0 {
53
return nil
54
}
+ fmt.Println("Do you want to upload an SSH key ?")
55
fmt.Println("[0] I don't want to upload a key !")
56
for i := range pubs {
57
fmt.Printf("[%d] %s\n", i+1, pubs[i])
0 commit comments