From 32ec0cf0727b04b6c25bc0f585e6b0d662702a32 Mon Sep 17 00:00:00 2001 From: Benedikt Schesch <37979523+benedikt-schesch@users.noreply.github.com> Date: Mon, 16 Sep 2024 20:06:20 +0200 Subject: [PATCH] Added latest absolute path (#351) --- src/python/repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/repo.py b/src/python/repo.py index 8ebdc89b1a..82363f2f69 100755 --- a/src/python/repo.py +++ b/src/python/repo.py @@ -547,7 +547,7 @@ def merge( command = [ "src/scripts/run_with_timeout.sh", str(timeout), - f"src/scripts/merge_tools/{tool.name}.sh {self.local_repo_path} {LEFT_BRANCH_NAME} {RIGHT_BRANCH_NAME}", + f"src/scripts/merge_tools/{tool.name}.sh {self.local_repo_path.resolve()} {LEFT_BRANCH_NAME} {RIGHT_BRANCH_NAME}", ] p = subprocess.run( command,