(dockerCli command.Cli)
| 633 | } |
| 634 | |
| 635 | func stdinfo(dockerCli command.Cli) io.Writer { |
| 636 | if stdioToStdout { |
| 637 | return dockerCli.Out() |
| 638 | } |
| 639 | return dockerCli.Err() |
| 640 | } |
| 641 | |
| 642 | // selectEventProcessor picks the EventProcessor for Compose progress rendering. |
| 643 | // |
no test coverage detected