tie Micropython examples to a stable release

This commit is contained in:
Sergio R. Caprile 2024-03-11 11:07:18 -03:00
parent 98db3360df
commit 2d2d9ad277
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ build: micropython
$(DOCKER) $(CMD)
micropython:
$(DOCKER) git clone https://github.com/micropython/micropython.git
$(DOCKER) git clone --depth 1 -b v1.22.2 https://github.com/micropython/micropython.git
clean:
test -d micropython && $(DOCKER) rm -rf micropython || true

View File

@ -7,7 +7,7 @@ example: micropython
$(MAKE) -C micropython/ports/unix USER_C_MODULES=../../..
micropython:
git clone https://github.com/micropython/micropython.git
git clone --depth 1 -b v1.22.2 https://github.com/micropython/micropython.git
clean:
rm -rf micropython