Skip to content

Commit f382aae

Browse files
committed
Do not normalize platformio.***_dir path when validating
1 parent 998da59 commit f382aae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

platformio/project/options.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ def validate_dir(path):
8787
return path
8888
if path.startswith("~"):
8989
path = fs.expanduser(path)
90-
return os.path.abspath(path)
90+
return path
91+
# return os.path.abspath(path)
9192

9293

9394
def get_default_core_dir():

0 commit comments

Comments
 (0)