Avoid overriding "pipe" option with "quiet"

Signed-off-by: ArchieMeng <archiemeng@protonmail.com>
This commit is contained in:
ArchieMeng 2021-04-27 15:01:22 +08:00
parent f3079726fa
commit a15f32ca92

View File

@ -280,11 +280,19 @@ def run_async(
"""
args = compile(stream_spec, cmd, overwrite_output=overwrite_output)
stdin_stream = subprocess.PIPE if pipe_stdin else None
stdout_stream = subprocess.PIPE if pipe_stdout else None
stderr_stream = subprocess.PIPE if pipe_stderr else None
stdout_stream = stderr_stream = None
if quiet:
stderr_stream = subprocess.STDOUT
stdout_stream = subprocess.DEVNULL
if pipe_stdout:
stdout_stream = subprocess.PIPE
stderr_stream = subprocess.DEVNULL if quiet else None
if pipe_stderr:
stderr_stream = subprocess.PIPE
return subprocess.Popen(
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream,
cwd=cwd