From a6a3464e7e9993a1d9b3ea933d5da7366c91f4e6 Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 13 Jul 2023 12:46:24 +0200 Subject: [PATCH] updated execute runner script --- code/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/utils.py b/code/utils.py index 6f2dbc9..80fe703 100644 --- a/code/utils.py +++ b/code/utils.py @@ -32,8 +32,8 @@ def clone_repository( def execute_runner_script(path: Path) -> None: - script_list = RunnerScript.from_file(path) - for cmd in script_list: + rs = RunnerScript.from_file(path) + for cmd in rs['script']: print(cmd) os.system(cmd) logging.debug('finished')