Skip to content

Commit

Permalink
Removing tty from exec to work around "command exited with code 129"
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Harrison committed Jun 20, 2017
1 parent 41f5d5e commit 19b6839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildrunner/docker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def run(self, cmd, console=None, stream=True):
create_res = self.docker_client.exec_create(
self.container['Id'],
[self.shell, '-c', cmd],
tty=True,
tty=False,
)
output_buffer = self.docker_client.exec_start(
create_res,
Expand Down

0 comments on commit 19b6839

Please sign in to comment.