From d85cea14ff6361a455ca4731da71438829974045 Mon Sep 17 00:00:00 2001 From: Jason Date: Sun, 26 May 2024 21:55:08 -0700 Subject: [PATCH] Fix SSH add command's help string --- cli/cmd/ssh.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/cmd/ssh.go b/cli/cmd/ssh.go index d1f18a4..db81fdf 100644 --- a/cli/cmd/ssh.go +++ b/cli/cmd/ssh.go @@ -18,12 +18,12 @@ var sshCmd = &cobra.Command{ }, } -// runCmd represents the run command +// sshAddCmd represents the ssh add command var sshAddCmd = &cobra.Command{ Use: "add", - Short: "Runs a command with environment variables from your vault", - Long: `Runs a command with environment variables from your vault. - The variables are stored as a secure note. Consult the documentation for more information.`, + Short: "Creates a new SSH key and adds it to the SSH Agent.", + Long: `Creates a new SSH key and adds it to the SSH Agent. + The key is stored as a secure note. Consult the documentation for more information.`, Run: func(cmd *cobra.Command, args []string) { err := loginIfRequired() if err != nil {