(command)
| 86 | ) |
| 87 | @click.argument('command', nargs=-1, type=click.UNPROCESSED) |
| 88 | def exec(command): |
| 89 | exit_code = 0 |
| 90 | with friendly_dockerized_errors(click): |
| 91 | exec_command = ExecCommand(' '.join(command)) |
| 92 | exit_code = exec_command.run() |
| 93 | click.get_current_context().exit(exit_code) |
| 94 | |
| 95 | |
| 96 | @main.command( |
nothing calls this directly
no test coverage detected