updated execute runner script

This commit is contained in:
brb
2023-07-13 12:46:53 +02:00
parent a6a3464e7e
commit c6c56ef1cf
+1 -1
View File
@@ -33,7 +33,7 @@ def clone_repository(
def execute_runner_script(path: Path) -> None: def execute_runner_script(path: Path) -> None:
rs = RunnerScript.from_file(path) rs = RunnerScript.from_file(path)
for cmd in rs['script']: for cmd in rs.script:
print(cmd) print(cmd)
os.system(cmd) os.system(cmd)
logging.debug('finished') logging.debug('finished')