Revert 'ulwgl_run: fix bug that caused stdout to be silenced'

This reverts commit fdc782fb0f508a1f0613939245b8eb93f232b2ad.
This commit is contained in:
R1kaB3rN 2024-02-18 10:20:04 -08:00
parent fdc782fb0f
commit 38ec2eb258
No known key found for this signature in database

View File

@ -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__":