From 7ff9162dc7a871fec15777fd47b0b0ce651b7f42 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Thu, 8 Oct 2020 14:50:27 +0200 Subject: [PATCH] Remove enterprise specific commands Signed-off-by: Guillaume Tardif --- metrics/commands.go | 4 ---- metrics/generatecommands/main.go | 3 ++- 2 files changed, 2 insertions(+), 5 deletions(-) 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")