(command)
| 134 | ) |
| 135 | @click.argument('command', nargs=-1, type=click.UNPROCESSED) |
| 136 | def compose(command): |
| 137 | exit_code = 0 |
| 138 | with friendly_dockerized_errors(click): |
| 139 | compose_command = ComposeCommand(command) |
| 140 | exit_code = compose_command.run() |
| 141 | click.get_current_context().exit(exit_code) |
| 142 | |
| 143 | |
| 144 | @main.command() |
nothing calls this directly
no test coverage detected