Do not normalize platformio.***_dir path when validating

This commit is contained in:
Ivan Kravets
2023-12-09 13:05:30 +02:00
parent 998da59f7c
commit f382aae66b

View File

@ -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():