From af5b50da4937a12070d96c827a6425dd116f93ec Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:21:05 -0800 Subject: [PATCH] ulwgl_run: fix bug that caused stdout to be silenced MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Paweł Lidwin --- 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__":