Remove enterprise specific commands

Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
Guillaume Tardif 2020-10-08 14:50:27 +02:00
parent a09983b474
commit 7ff9162dc7
2 changed files with 2 additions and 5 deletions

View File

@ -24,10 +24,6 @@ var commandFlags = []string{
// Generated with generatecommands/main.go
var managementCommands = []string{
"ecs",
"assemble",
"registry",
"template",
"cluster",
"scan",
"app",
"builder",

View File

@ -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")