ulwgl_run: fix bug that caused stdout to be silenced

Co-authored-by: imLinguin lidwinpawel@gmail.com
This commit is contained in:
R1kaB3rN 2024-02-18 10:00:46 -08:00
parent 8af0f0590e
commit fdc782fb0f
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, check=True, stdout=subprocess.PIPE, text=True)
subprocess.run(command)
if __name__ == "__main__":