Skip to content

Commit 7fa8caf

Browse files
authored
Fix issue when user name contains a space
1 parent 52d4705 commit 7fa8caf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/platformio-build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def _get_board_flash_mode(env):
136136

137137
UPLOADERFLAGS=[
138138
"0x1000", join(FRAMEWORK_DIR, "tools", "sdk", "bin", "bootloader_${BOARD_FLASH_MODE}_${__get_board_f_flash(__env__)}.bin"),
139-
"0x8000", join("$BUILD_DIR", "partitions.bin"),
139+
"0x8000", join(env.subst("$BUILD_DIR"), "partitions.bin"),
140140
"0xe000", join(FRAMEWORK_DIR, "tools", "partitions", "boot_app0.bin"),
141141
"0x10000"
142142
]

0 commit comments

Comments
 (0)