Skip to content

Commit 6ccd529

Browse files
Solve the problem of version reading
1 parent 4576ad3 commit 6ccd529

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/makeversionhdr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def make_version_header(repo_path, filename):
106106
git_tag = os.environ["MICROPY_GIT_TAG"]
107107
git_hash = os.environ.get("MICROPY_GIT_HASH")
108108
if git_tag is None:
109-
git_tag = get_version_info_from_git(repo_path)
109+
#git_tag = get_version_info_from_git(repo_path)
110110
git_hash = get_hash_from_git(repo_path)
111111
if git_tag is None:
112112
git_tag = get_version_info_from_mpconfig(repo_path)

0 commit comments

Comments
 (0)