mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
set stderr to subprocess.PIPE to hide it from the shell
This commit is contained in:
parent
1881d579c9
commit
ea79f49121
1 changed files with 1 additions and 0 deletions
|
@ -121,6 +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,
|
||||||
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