From 3c6a31763959b25b13534601bb2d688d09e0d9fc Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 24 Oct 2025 19:38:39 +0200 Subject: [PATCH] Only fetch SDL tags --- scripts/build_lvgl_micropython.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_lvgl_micropython.sh b/scripts/build_lvgl_micropython.sh index 1ce633ff..d4063a3a 100755 --- a/scripts/build_lvgl_micropython.sh +++ b/scripts/build_lvgl_micropython.sh @@ -29,7 +29,7 @@ echo "Fetch tags for lib/SDL, otherwise lvgl_micropython's make.py script can't pushd "$codebasedir"/lvgl_micropython/lib/SDL git fetch --unshallow origin 2>/dev/null # will give error if already done # Or fetch all refs without unshallowing (keeps it shallow but adds refs) -git fetch origin 'refs/*:refs/*' >/dev/null # huge list that pollutes the build output +git fetch origin 'refs/tags/*:refs/tags/*' popd echo "Check need to add esp32-camera..."