From 5fea604f78470a0c469a69687dfefe1985000114 Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Thu, 2 Dec 2021 17:09:20 -0500 Subject: [PATCH] gh cs cp --help: fix typo --- pkg/cmd/codespace/ssh.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/codespace/ssh.go b/pkg/cmd/codespace/ssh.go index 74bb9c7a5ad..840386d5c44 100644 --- a/pkg/cmd/codespace/ssh.go +++ b/pkg/cmd/codespace/ssh.go @@ -179,9 +179,9 @@ func newCpCmd(app *App) *cobra.Command { provided by untrusted users; see for discussion. `, "`"), Example: heredoc.Doc(` - $ gh codespace cp -e README.md 'remote:/workspace/$RepositoryName/' + $ gh codespace cp -e README.md 'remote:/workspaces/$RepositoryName/' $ gh codespace cp -e 'remote:~/*.go' ./gofiles/ - $ gh codespace cp -e 'remote:/workspace/myproj/go.{mod,sum}' ./gofiles/ + $ gh codespace cp -e 'remote:/workspaces/myproj/go.{mod,sum}' ./gofiles/ `), RunE: func(cmd *cobra.Command, args []string) error { return app.Copy(cmd.Context(), args, opts)