Skip to content

Commit 9854f0a

Browse files
author
jantje
committed
Make is not found untill the arduini ide path has been properly
configured. This is because the path used to run the command is the aduino ide path. As the arduino ide path has not been given the default is returned which is an empty string. I changed the default to ..
1 parent 70cb21b commit 9854f0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

it.baeyens.arduino.common/src/it/baeyens/arduino/common/ArduinoInstancePreferences.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public static String getLastUsedMenuOption() {
306306
}
307307

308308
public static IPath getArduinoPath() {
309-
return Common.getArduinoIDEPathFromUserSelection(getGlobalString(KEY_ARDUINOPATH, ""));
309+
return Common.getArduinoIDEPathFromUserSelection(getGlobalString(KEY_ARDUINOPATH, "."));
310310
}
311311

312312
public static IPath getArduinoIdeHardwarePath() {

0 commit comments

Comments
 (0)