From c6c56ef1cf0fe17a729b0ced2232075b3c1a2d54 Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 13 Jul 2023 12:46:53 +0200 Subject: [PATCH] updated execute runner script --- code/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/utils.py b/code/utils.py index 80fe703..55b3b8e 100644 --- a/code/utils.py +++ b/code/utils.py @@ -33,7 +33,7 @@ def clone_repository( def execute_runner_script(path: Path) -> None: rs = RunnerScript.from_file(path) - for cmd in rs['script']: + for cmd in rs.script: print(cmd) os.system(cmd) logging.debug('finished')