mirror of
https://github.com/tcsenpai/UWINE.git
synced 2025-06-07 03:55:21 +00:00
Delete print statements
This commit is contained in:
parent
f73ef0f268
commit
2e8faa1f41
@ -299,11 +299,9 @@ def main() -> None: # noqa: D103
|
|||||||
# Set all environment variables
|
# Set all environment variables
|
||||||
# NOTE: `env` after this block should be read only
|
# NOTE: `env` after this block should be read only
|
||||||
for key, val in env.items():
|
for key, val in env.items():
|
||||||
print(f"Setting environment variable: {key}={val}")
|
|
||||||
os.environ[key] = val
|
os.environ[key] = val
|
||||||
|
|
||||||
build_command(env, command)
|
build_command(env, command)
|
||||||
print(f"The following command will be executed: {command}")
|
|
||||||
subprocess.run(command, check=True, stdout=subprocess.PIPE, text=True)
|
subprocess.run(command, check=True, stdout=subprocess.PIPE, text=True)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user