diff --git a/lve-tools/lve_tools/lve/repo.py b/lve-tools/lve_tools/lve/repo.py index d6fc9d8..40046eb 100644 --- a/lve-tools/lve_tools/lve/repo.py +++ b/lve-tools/lve_tools/lve/repo.py @@ -125,7 +125,7 @@ def get_active_repo() -> LVERepo: Returns the active LVE repository (derives it from the current path by traversing up, until it finds a file named .lverepo). """ - path = pathlib.Path(__file__).parent + path = os.getcwd() try: while path != "/" and path != "": if os.path.exists(os.path.join(path, ".lverepo")):