1
0
Fork 0

show post install tasks only if it exists

This commit is contained in:
Kim, Jimin 2022-03-15 10:55:29 +09:00
parent 7a499e8e42
commit dc374066d8

View file

@ -31,6 +31,7 @@ def choose_action():
log(f"Setting up: {module.name} ({action_name})")
module.setup()
print("POST INStALL TASKS:")
for post_install_task in post_install_tasks:
print(f"- {post_install_task}")
if post_install_tasks:
print("POST INStALL TASKS:")
for post_install_task in post_install_tasks:
print(f"- {post_install_task}")