diff --git a/metrics/commands.go b/metrics/commands.go index e07c02419..bcf9ee91f 100644 --- a/metrics/commands.go +++ b/metrics/commands.go @@ -24,10 +24,6 @@ var commandFlags = []string{ // Generated with generatecommands/main.go var managementCommands = []string{ "ecs", - "assemble", - "registry", - "template", - "cluster", "scan", "app", "builder", diff --git a/metrics/generatecommands/main.go b/metrics/generatecommands/main.go index 494b5875f..9491c4e8a 100644 --- a/metrics/generatecommands/main.go +++ b/metrics/generatecommands/main.go @@ -24,11 +24,12 @@ import ( "github.com/docker/compose-cli/utils" ) -var managementCommands = []string{"ecs", "assemble", "registry", "template", "cluster", "scan"} +var managementCommands = []string{"ecs", "scan"} var commands = []string{} func main() { + fmt.Println("Walking through docker help to list commands...") getCommands() getCommands("compose")