From 1ef127d85fdd8a75cf0f62d87f27de28cd723d0a Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 13 Jul 2023 12:48:51 +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 55b3b8e..6b645a2 100644 --- a/code/utils.py +++ b/code/utils.py @@ -34,6 +34,6 @@ def clone_repository( def execute_runner_script(path: Path) -> None: rs = RunnerScript.from_file(path) for cmd in rs.script: - print(cmd) + print(f'> {cmd}') os.system(cmd) logging.debug('finished')