MCPcopy Create free account
hub / github.com/benzaita/dockerized-cli / exec

Function exec

dockerized/ui/cli.py:88–93  ·  view source on GitHub ↗
(command)

Source from the content-addressed store, hash-verified

86)
87@click.argument('command', nargs=-1, type=click.UNPROCESSED)
88def 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(

Callers

nothing calls this directly

Calls 3

runMethod · 0.95
ExecCommandClass · 0.90

Tested by

no test coverage detected