From 28fde5f6cf2d74c60c0159479eedc5e83d17ca05 Mon Sep 17 00:00:00 2001 From: Michael Boniface <m.j.boniface@soton.ac.uk> Date: Wed, 26 Feb 2025 18:25:45 +0000 Subject: [PATCH] fix: had to resolve the phen_path to full path rather than using the relative path ../nnnn. closes #33 --- acmc/phen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/acmc/phen.py b/acmc/phen.py index 0b54d16..a92bdb2 100644 --- a/acmc/phen.py +++ b/acmc/phen.py @@ -215,6 +215,7 @@ def init(phen_dir, remote_url): repo = git.Repo.init(phen_path) commit_count = 0 + phen_path = phen_path.resolve() # initialise empty repos if commit_count == 0: # create initial commit -- GitLab