We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34f565d + 863042d commit 5116c01Copy full SHA for 5116c01
Makefile
@@ -345,3 +345,7 @@ fetch-submodules:
345
remove-submodules:
346
git submodule deinit -f --all
347
rm -rf .git/modules/*
348
+
349
+.PHONY: fetch-tags
350
+fetch-tags:
351
+ git fetch --tags --recurse-submodules=no --shallow-since="2023-02-01" https://github.com/adafruit/circuitpython HEAD
py/makeversionhdr.py
@@ -66,7 +66,7 @@ def cannot_determine_version():
66
CircuitPython must be built from a git clone with tags.
67
If you cloned from a fork, fetch the tags from adafruit/circuitpython as follows:
68
69
- git fetch --tags --recurse-submodules=no --shallow-since="2021-07-01" https://github.com/adafruit/circuitpython HEAD"""
+ make fetch-tags"""
70
)
71
72
0 commit comments