Skip to content

Commit cbb102f

Browse files
authored
Merge pull request adafruit#1909 from dhalbert/update-frozen-4.0.x
Update frozen libs; implement clean builds for translations which need it
2 parents 812a31c + 71c7aca commit cbb102f

File tree

19 files changed

+58
-17
lines changed

19 files changed

+58
-17
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)