We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcc0515 commit 278ffa0Copy full SHA for 278ffa0
src/ESP32FS.java
@@ -286,9 +286,9 @@ private void createAndUpload(){
286
String esptoolCmd = "esptool"+toolExtension;
287
esptool = new File(platform.getFolder()+"/tools", esptoolCmd);
288
if(!esptool.exists() || !esptool.isFile()){
289
- esptool = new File(platform.getFolder()+"/tools/esptool", esptoolCmd);
+ esptool = new File(platform.getFolder()+"/tools/esptool_py", esptoolCmd);
290
if(!esptool.exists()){
291
- esptool = new File(PreferencesData.get("runtime.tools.esptool.path"), esptoolCmd);
+ esptool = new File(PreferencesData.get("runtime.tools.esptool_py.path"), esptoolCmd);
292
if (!esptool.exists()) {
293
System.err.println();
294
editor.statusError("SPIFFS Error: esptool not found!");
0 commit comments