We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a9c1e1 commit 3cf446fCopy full SHA for 3cf446f
it.baeyens.arduino.common/src/it/baeyens/arduino/common/Common.java
@@ -605,8 +605,14 @@ public static File getPreferenceFile() {
605
* @return
606
*/
607
public static String getDefaultPrivateHardwarePath() {
608
+ if (Platform.getOS().equals(Platform.OS_WIN32)) {
609
+ IPath homPath = new Path(System.getProperty("user.dir"));
610
+ return homPath.append("Arduino").append("hardware").toString();
611
+ }
612
+
613
IPath homPath = new Path(System.getProperty("user.home"));
614
return homPath.append("Arduino").append("hardware").toString();
615
616
}
617
618
public static File getArduinoIdeDumpName(String packageName, String architecture, String boardID) {
0 commit comments