improve ssh handling #277

Merged
6543 merged 13 commits from noerw/tea:improve-ssh-handling into master 2020-12-11 13:42:42 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 7d94a9545c - Show all commits

View File

@ -52,7 +52,7 @@ var CmdLoginAdd = cli.Command{
&cli.StringFlag{
Name: "ssh-key",
Aliases: []string{"s"},
Usage: "Path to a SSH key to use for pull/push operations",
Usage: "Path to a SSH key to use, overrides auto-discovery",
},
&cli.BoolFlag{
Name: "insecure",

View File

@ -73,7 +73,7 @@ func CreateLogin() error {
return err
}
if optSettings {
promptI = &survey.Input{Message: "SSH Key Path: "}
promptI = &survey.Input{Message: "SSH Key Path (leave empty for auto-discovery):"}
if err := survey.AskOne(promptI, &sshKey); err != nil {
return err
}