ulwgl_run: fix bug that caused stdout to be silenced

Co-authored-by: Paweł Lidwin <lidwinpawel@gmail.com>
This commit is contained in:
R1kaB3rN 2024-02-18 10:21:05 -08:00
parent 38ec2eb258
commit af5b50da49
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__":