From 82c19729d3ce9fcc0c604c811ddd609ed6190f5e Mon Sep 17 00:00:00 2001 From: Jose Garcia Date: Fri, 17 Sep 2021 15:17:38 -0400 Subject: [PATCH] Wrap -- with optional argument brackets --- cmd/ghcs/ssh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ghcs/ssh.go b/cmd/ghcs/ssh.go index 390fc25c8..e459f265a 100644 --- a/cmd/ghcs/ssh.go +++ b/cmd/ghcs/ssh.go @@ -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)