updated execute runner script

This commit is contained in:
brb
2023-07-13 12:46:24 +02:00
parent 86834b1d7c
commit a6a3464e7e
+2 -2
View File
@@ -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')