Add log output for each task being run

This commit is contained in:
Joshua Boniface 2021-10-31 02:27:27 -04:00
parent 483f357f2b
commit 694bec2346
1 changed files with 1 additions and 0 deletions

View File

@ -163,6 +163,7 @@ def do_task(self, config, hooktype, request):
tasks = parse_config(event, event_action)
for task in tasks:
print(f'Running {task}...')
os.system(task)
os.chdir('..')