(config command.Config, ui command.UI)
| 22 | } |
| 23 | |
| 24 | func (cmd *CreatePackageCommand) Setup(config command.Config, ui command.UI) error { |
| 25 | cmd.PackageDisplayer = shared.NewPackageDisplayer(ui, config) |
| 26 | return cmd.BaseCommand.Setup(config, ui) |
| 27 | } |
| 28 | |
| 29 | func (cmd CreatePackageCommand) Execute(args []string) error { |
| 30 | if cmd.DockerImage.Path != "" && cmd.AppPath != "" { |
nothing calls this directly
no test coverage detected