From f382aae66b42b9c44b012d16755ea30a241283a9 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 9 Dec 2023 13:05:30 +0200 Subject: [PATCH] Do not normalize platformio.***_dir path when validating --- platformio/project/options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platformio/project/options.py b/platformio/project/options.py index 51611d24..6a6d4967 100644 --- a/platformio/project/options.py +++ b/platformio/project/options.py @@ -87,7 +87,8 @@ def validate_dir(path): return path if path.startswith("~"): path = fs.expanduser(path) - return os.path.abspath(path) + return path + # return os.path.abspath(path) def get_default_core_dir():