Skip to content

Commit 763774e

Browse files
committed
Update gen_pioarduino_manifest.py
1 parent c8f8570 commit 763774e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: tools/gen_pioarduino_manifest.py

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ def convert_version(version_string):
2323
'v7.7.7' becomes '7.7.7'
2424
"""
2525

26+
if version_string == 'heads/master':
27+
return ".".join(("5", "5", "0")) #temporary
28+
2629
regex_pattern = (
2730
r"v(?P<MAJOR>0|[1-9]\d*)\.(?P<MINOR>0|[1-9]\d*)\.*(?P<PATCH>0|[1-9]\d*)*"
2831
)

0 commit comments

Comments
 (0)