From fdc782fb0f508a1f0613939245b8eb93f232b2ad Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:00:46 -0800 Subject: [PATCH] ulwgl_run: fix bug that caused stdout to be silenced Co-authored-by: imLinguin lidwinpawel@gmail.com --- ulwgl_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulwgl_run.py b/ulwgl_run.py index 41a2532..42d294f 100755 --- a/ulwgl_run.py +++ b/ulwgl_run.py @@ -323,7 +323,7 @@ def main() -> None: # noqa: D103 os.environ[key] = val build_command(env, command, opts) - subprocess.run(command, check=True, stdout=subprocess.PIPE, text=True) + subprocess.run(command) if __name__ == "__main__":