Skip to content

fix: show help on wraper commands #4402

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cli/parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ func parameters() *cobra.Command {
// constructing curl requests.
Hidden: true,
Aliases: []string{"params"},
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(
parameterList(),
Expand Down
3 changes: 3 additions & 0 deletions cli/schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ func schedules() *cobra.Command {
Annotations: workspaceCommand,
Use: "schedule { show | start | stop | override } <workspace>",
Short: "Schedule automated start and stop times for workspaces",
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}

scheduleCmd.AddCommand(
Expand Down
3 changes: 3 additions & 0 deletions cli/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ func state() *cobra.Command {
cmd := &cobra.Command{
Use: "state",
Short: "Manually manage Terraform state to fix broken workspaces",
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(statePull(), statePush())
return cmd
Expand Down
3 changes: 3 additions & 0 deletions cli/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ func templates() *cobra.Command {
Command: "coder templates push my-template",
},
),
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(
templateCreate(),
Expand Down
3 changes: 3 additions & 0 deletions cli/templateversions.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ func templateVersions() *cobra.Command {
Command: "coder templates versions list my-template",
},
),
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(
templateVersionsList(),
Expand Down
3 changes: 3 additions & 0 deletions cli/tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ func tokens() *cobra.Command {
Command: "coder tokens rm WuoWs4ZsMX",
},
),
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(
createToken(),
Expand Down
3 changes: 3 additions & 0 deletions cli/users.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ func users() *cobra.Command {
Short: "Manage users",
Use: "users",
Aliases: []string{"user"},
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(
userCreate(),
Expand Down
3 changes: 3 additions & 0 deletions enterprise/cli/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func features() *cobra.Command {
Short: "List Enterprise features",
Use: "features",
Aliases: []string{"feature"},
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(
featuresList(),
Expand Down