Fix missing tty parameter. #653

Merged
telackey merged 1 commits from telackey/tty into main 2023-11-16 18:58:03 +00:00

View File

@ -155,7 +155,7 @@ def exec_operation(ctx, extra_args):
if global_context.verbose:
print(f"Running compose exec {service_name} {command_to_exec}")
try:
ctx.obj.deployer.execute(service_name, command_to_exec, envs=container_exec_env)
ctx.obj.deployer.execute(service_name, command_to_exec, envs=container_exec_env, tty=True)
except DeployerException:
print("container command returned error exit status")