Skip to content

Commit 418e3de

Browse files
facchinmcmaglie
authored andcommitted
Add runtime tool with version to board preferences
If two vendors declare the same tool (name and version) and platform.txt requires {runtime.tool-version.path}, the tool is chosen randomly. This patch completes 6f24fa6
1 parent bf42f26 commit 418e3de

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

arduino-core/src/processing/app/BaseNoGui.java

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ static public PreferencesMap getBoardPreferences() {
189189
}
190190
String toolPath = folder.getAbsolutePath();
191191
prefs.put(prefix + tool.getName() + ".path", toolPath);
192+
prefs.put(prefix + tool.getName() + "-" + tool.getVersion() + ".path", toolPath);
192193
PreferencesData.set(prefix + tool.getName() + ".path", toolPath);
193194
PreferencesData.set(prefix + tool.getName() + "-" + tool.getVersion() + ".path", toolPath);
194195
}

0 commit comments

Comments
 (0)