Wrap -- with optional argument brackets

This commit is contained in:
Jose Garcia 2021-09-17 15:17:38 -04:00
parent 47c6a5fce8
commit 82c19729d3

View file

@ -18,7 +18,7 @@ func newSSHCmd() *cobra.Command {
var sshServerPort int
sshCmd := &cobra.Command{
Use: "ssh [flags] -- [ssh-flags] [command]",
Use: "ssh [flags] [--] [ssh-flags] [command]",
Short: "SSH into a codespace",
RunE: func(cmd *cobra.Command, args []string) error {
return ssh(context.Background(), args, sshProfile, codespaceName, sshServerPort)