makeEspArduino icon indicating copy to clipboard operation
makeEspArduino copied to clipboard

ota doesn't work on Ubuntu 24.04

Open sawik-PL opened this issue 1 year ago • 1 comments

The patch fixes it:

diff --git a/makeEspArduino.mk b/makeEspArduino.mk
index 8e92dbb..9fa43c6 100644
--- a/makeEspArduino.mk
+++ b/makeEspArduino.mk
@@ -186,7 +186,7 @@ OBJ_EXT = .o
 DEP_EXT = .d
 
 # Special tool definitions
-OTA_TOOL ?= python $(TOOLS_ROOT)/espota.py
+OTA_TOOL ?= python3 $(TOOLS_ROOT)/espota.py
 HTTP_TOOL ?= curl
 
 # Core source files

sawik-PL avatar Nov 06 '24 19:11 sawik-PL

Now fixed in latest commit

plerup avatar Feb 09 '25 18:02 plerup