mirror of https://github.com/docker/compose.git
rename runCompose() to checkComposeSupport()
Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
parent
bb3500d77b
commit
42a5dfc0d2
|
@ -34,7 +34,7 @@ func Command() *cobra.Command {
|
|||
Short: "Docker Compose",
|
||||
Use: "compose",
|
||||
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
|
||||
return runCompose(cmd.Context())
|
||||
return checkComposeSupport(cmd.Context())
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,7 @@ func Command() *cobra.Command {
|
|||
return command
|
||||
}
|
||||
|
||||
func runCompose(ctx context.Context) error {
|
||||
func checkComposeSupport(ctx context.Context) error {
|
||||
c, err := client.New(ctx)
|
||||
if err == nil {
|
||||
composeService := c.ComposeService()
|
||||
|
|
Loading…
Reference in New Issue