remove dot

This commit is contained in:
miampf 2025-01-21 11:43:07 +01:00
parent 07a33092de
commit f8f2490011
No known key found for this signature in database
GPG Key ID: EF039364B5B6886C

View File

@ -33,7 +33,7 @@ func NewSSHCmd() *cobra.Command {
Args: cobra.ExactArgs(0),
RunE: runSSH,
}
cmd.Flags().String("key", "", "the path to an existing ssh public key.")
cmd.Flags().String("key", "", "the path to an existing ssh public key")
must(cmd.MarkFlagRequired("key"))
return cmd
}