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.
1 parent d9cb563 commit 2990c3fCopy full SHA for 2990c3f
tools/get_idf_ver.py
@@ -9,7 +9,7 @@ def main(ver_file_path):
9
pattern = r"set\(IDF_VERSION_(MAJOR|MINOR|PATCH) (\d+)\)"
10
matches = re.findall(pattern, fp.read())
11
idf_version = str(".".join([match[1] for match in matches]))
12
- idf_version = idf_version + str(datetime.date.today())
+ idf_version = idf_version + "." + str(datetime.date.today())
13
os.environ["IDF_VERSION"] = idf_version
14
return idf_version
15
0 commit comments