Skip to content

Commit

Permalink
fix(stm32variant): wrong regex for db release
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Pillon <[email protected]>
  • Loading branch information
fpistm committed Jan 4, 2024
1 parent 72f8bd2 commit 8cf5250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CI/update/stm32variant.py
Original file line number Diff line number Diff line change
Expand Up @@ -2621,7 +2621,7 @@ def manage_repo():
db_release = item.attributes["Release"].value

# Process DB release
release_regex = r".*(\d+.\d+.\d+)$"
release_regex = r".*(\d+\.\d+\.\d+)$"
release_match = re.match(release_regex, db_release)
if release_match:
db_release = release_match.group(1)
Expand Down

0 comments on commit 8cf5250

Please sign in to comment.