Skip to content

Commit c5014d8

Browse files
authored
Merge pull request #684 from uzi18/fix-683
- fix for issue #683
2 parents 0da8455 + 21ce6e0 commit c5014d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io.sloeber.core/src/io/sloeber/core/tools/Helpers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ private static void setTheEnvironmentVariablesAddAFile(String prefix, IContribut
584584
String var[] = realData[0].split("=", 2); // look
585585
// for assignment
586586
if (var.length == 2) {
587-
String value = var[1];
587+
String value = var[1].trim();
588588
if (value.contains(BUILD_PATH_SYSCALLS_SAM3)) {
589589
value = value.replace(BUILD_PATH_SYSCALLS_SAM3, BUILD_PATH_ARDUINO_SYSCALLS_SAM3);
590590
} else if (value.contains(BUILD_PATH_SYSCALLS_MTK)) {

0 commit comments

Comments
 (0)