summaryrefslogtreecommitdiffstats
path: root/.travis/package_management/common.py
diff options
context:
space:
mode:
Diffstat (limited to '.travis/package_management/common.py')
-rwxr-xr-x.travis/package_management/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/package_management/common.py b/.travis/package_management/common.py
index 7999d8be25..61cf358737 100755
--- a/.travis/package_management/common.py
+++ b/.travis/package_management/common.py
@@ -51,7 +51,7 @@ def replace_tag(tag_name, spec, new_tag_content):
def run_command(container, command):
print("Running command: %s" % command)
- command_result = container.attach_wait(lxc.attach_run_command, command)
+ command_result = container.attach_wait(lxc.attach_run_command, command, stdout=sys.stdout.buffer, stderr=sys.stdout.buffer)
if command_result != 0:
raise Exception("Command failed with exit code %d" % command_result)