diff --git a/common/tools.py b/common/tools.py index 546f697..d5f5ae2 100644 --- a/common/tools.py +++ b/common/tools.py @@ -5,6 +5,7 @@ def log_check_call(command): if status != 0: from subprocess import CalledProcessError raise CalledProcessError(status, ' '.join(command), '\n'.join(stderr)) + return stdout def log_call(command):