зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1854463 - run_operations.py - only print stderr if capture_output is true for run_shell command. r=dbaker DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D188878
This commit is contained in:
Родитель
839220b4d9
Коммит
87ac36f402
|
@ -68,7 +68,8 @@ def run_shell(cmd, capture_output=True):
|
|||
"Hit return code {} running '{}'. Aborting.".format(res.returncode, cmd),
|
||||
file=sys.stderr,
|
||||
)
|
||||
print(res.stderr)
|
||||
if capture_output:
|
||||
print(res.stderr)
|
||||
sys.exit(1)
|
||||
output_lines = []
|
||||
if capture_output:
|
||||
|
|
Загрузка…
Ссылка в новой задаче