Skip to content

Commit

Permalink
ulwgl_run: fix bug that caused stdout to be silenced
Browse files Browse the repository at this point in the history
Co-authored-by: imLinguin [email protected]
  • Loading branch information
R1kaB3rN committed Feb 18, 2024
1 parent 8af0f05 commit fdc782f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulwgl_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__":
Expand Down

0 comments on commit fdc782f

Please sign in to comment.