8000 Add top-level Makefile target to update frozen libs easily; Update CP… · flummer/circuitpython@71c7aca · GitHub
[go: up one dir, main page]

Skip to content

Commit 71c7aca

Browse files
committed
Add top-level Makefile target to update frozen libs easily; Update CPX lib
1 parent 4e85c1e commit 71c7aca

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Makefile for Sphinx documentation
1+
# Top-level Makefile for documentation builds and miscellaneous tasks.
22
#
33

44
# You can set these variables from the command line.
@@ -203,3 +203,7 @@ translate: locale/circuitpython.pot
203203

204204
check-translate: locale/circuitpython.pot $(wildcard locale/*.po)
205205
$(PYTHON) tools/check_translations.py $^
206+
207+
update-frozen-libraries:
208+
@echo "Updating all frozen libraries to latest tagged version."
209+
cd frozen; for library in *; do cd $$library; ../../tools/git-checkout-latest-tag.sh; cd ..; done

0 commit comments

Comments
 (0)
0