mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-05 04:08:21 +02:00
changed stderr from PIPE to DEVNULL (debug data was getting written to stdout)
This commit is contained in:
parent
22adc6e29e
commit
d7a8e3c40b
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ def _run_popen(tools_path: Path | str, *args, universal_newlines=False) -> subpr
|
||||||
[tools_path, *args],
|
[tools_path, *args],
|
||||||
stdin=subprocess.PIPE,
|
stdin=subprocess.PIPE,
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.PIPE,
|
stderr=subprocess.DEVNULL,
|
||||||
creationflags=subprocess.CREATE_NO_WINDOW,
|
creationflags=subprocess.CREATE_NO_WINDOW,
|
||||||
bufsize=1 if universal_newlines else None,
|
bufsize=1 if universal_newlines else None,
|
||||||
universal_newlines=universal_newlines,
|
universal_newlines=universal_newlines,
|
||||||
|
|
Loading…
Reference in a new issue