mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Do not normalize platformio.***_dir path when validating
This commit is contained in:
@ -87,7 +87,8 @@ def validate_dir(path):
|
|||||||
return path
|
return path
|
||||||
if path.startswith("~"):
|
if path.startswith("~"):
|
||||||
path = fs.expanduser(path)
|
path = fs.expanduser(path)
|
||||||
return os.path.abspath(path)
|
return path
|
||||||
|
# return os.path.abspath(path)
|
||||||
|
|
||||||
|
|
||||||
def get_default_core_dir():
|
def get_default_core_dir():
|
||||||
|
Reference in New Issue
Block a user