Skip to content

Commit 872d231

Browse files
In build directory name, when build profile is specified, use - (instead of __) as a delimiter between compiler name and build profile name.
1 parent 82db73c commit 872d231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mbed/mbed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2442,7 +2442,7 @@ def _safe_append_profile_to_build_path(build_path, profile):
24422442

24432443
if profile:
24442444
profile_name_without_extension = os.path.splitext(os.path.basename(profile))[0].upper()
2445-
build_path += '__' + profile_name_without_extension
2445+
build_path += '-' + profile_name_without_extension
24462446

24472447
return build_path
24482448

0 commit comments

Comments
 (0)