mirror of
https://github.com/platformio/platformio-core.git
synced 2026-04-28 18:12:05 +02:00
Fix home dir path for Windows
This commit is contained in:
+1
-1
@@ -37,7 +37,7 @@ def get_home_dir():
|
||||
pass
|
||||
|
||||
if not home_dir:
|
||||
home_dir = expanduser("~/.platformio")
|
||||
home_dir = join(expanduser("~"), ".platformio")
|
||||
|
||||
if not isdir(home_dir):
|
||||
makedirs(home_dir)
|
||||
|
||||
Reference in New Issue
Block a user