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:
Michael Froman 2023-09-25 15:15:00 +00:00
Родитель 839220b4d9
Коммит 87ac36f402
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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: