From 9c1b741d89bcaf02d0f800c132d7afe7b76dafbd Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Fri, 1 Sep 2023 13:17:50 +0530 Subject: [PATCH] Relative path for src --- scripts/check_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_modules.py b/scripts/check_modules.py index 63e21017..5328dcb4 100644 --- a/scripts/check_modules.py +++ b/scripts/check_modules.py @@ -85,7 +85,7 @@ def install(module_name: str, module_version: str): def update_modules(): for module_name, allowed_versions in modules_to_check.items(): - if os.path.exists(f"../src/{module_name}"): + if os.path.exists(f"src/{module_name}"): print(f"Skipping {module_name} update, since it's in developer/editable mode") continue