From 86834b1d7ca6dfe28f7c4397b10db1d448e613a0 Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 13 Jul 2023 12:45:04 +0200 Subject: [PATCH] updated execute runner script --- code/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/code/utils.py b/code/utils.py index cca41eb..6f2dbc9 100644 --- a/code/utils.py +++ b/code/utils.py @@ -34,5 +34,6 @@ def clone_repository( def execute_runner_script(path: Path) -> None: script_list = RunnerScript.from_file(path) for cmd in script_list: + print(cmd) os.system(cmd) logging.debug('finished')