We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b080a60 commit 242746fCopy full SHA for 242746f
1 file changed
cmd/sandbox/list.go
@@ -34,8 +34,13 @@ var listCmdFlags listFlags
34
func NewListCommand(clients *shared.ClientFactory) *cobra.Command {
35
cmd := &cobra.Command{
36
Use: "list [flags]",
37
- Short: "List your sandboxes",
38
- Long: `List details of your sandboxes`,
+ Short: "List developer sandboxes",
+ Long: strings.Join([]string{
39
+ "List details about your developer sandboxes.",
40
+ "",
41
+ "The listed developer sandboxes belong to a developer program account",
42
+ "that matches the email address of the authenticated user.",
43
+ }, "\n"),
44
Example: style.ExampleCommandsf([]style.ExampleCommand{
45
{Command: "sandbox list", Meaning: "List your sandboxes"},
46
{Command: "sandbox list --filter active", Meaning: "List active sandboxes only"},
0 commit comments