From 38ec2eb258711e717f170c09458953ea32341680 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:20:04 -0800 Subject: [PATCH] Revert 'ulwgl_run: fix bug that caused stdout to be silenced' This reverts commit fdc782fb0f508a1f0613939245b8eb93f232b2ad. --- ulwgl_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulwgl_run.py b/ulwgl_run.py index 42d294f..41a2532 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) + subprocess.run(command, check=True, stdout=subprocess.PIPE, text=True) if __name__ == "__main__":