From 19fb7aae63130e848a0eee5a08d5777e9c901657 Mon Sep 17 00:00:00 2001 From: Wesley Ellis Date: Tue, 16 Sep 2025 18:15:14 -0400 Subject: [PATCH] Use python3 not python in build.sh Since the bin/uf2conv/uf2conf.py script uses python3, use python3 as the command instead of python. On my ubuntu 24.04 machine, I don't have a python command in my path by default --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 47fec4a3b..5b091b5ab 100755 --- a/build.sh +++ b/build.sh @@ -60,7 +60,7 @@ build_firmware() { # build .uf2 for nrf52 boards if [[ -f .pio/build/$1/firmware.zip && -f .pio/build/$1/firmware.hex ]]; then - python bin/uf2conv/uf2conv.py .pio/build/$1/firmware.hex -c -o .pio/build/$1/firmware.uf2 -f 0xADA52840 + python3 bin/uf2conv/uf2conv.py .pio/build/$1/firmware.hex -c -o .pio/build/$1/firmware.uf2 -f 0xADA52840 fi # copy .bin, .uf2, and .zip to out folder