Skip to content

Commit 2990c3f

Browse files
authored
Update get_idf_ver.py
1 parent d9cb563 commit 2990c3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/get_idf_ver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def main(ver_file_path):
99
pattern = r"set\(IDF_VERSION_(MAJOR|MINOR|PATCH) (\d+)\)"
1010
matches = re.findall(pattern, fp.read())
1111
idf_version = str(".".join([match[1] for match in matches]))
12-
idf_version = idf_version + str(datetime.date.today())
12+
idf_version = idf_version + "." + str(datetime.date.today())
1313
os.environ["IDF_VERSION"] = idf_version
1414
return idf_version
1515

0 commit comments

Comments
 (0)