fixed typo

This commit is contained in:
Jelle Spijker 2022-09-12 09:03:21 +02:00 committed by GitHub
parent 6f0627ea48
commit 6d8ac37766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ jobs:
latest_branch_version = tools.Version("0.0.0")
latest_branch_tag = None
for tag in repo.git.tag(merged = True).splitlines():
if str(tag).startswith("firmware") of str(tag).startswith("master"):
if str(tag).startswith("firmware") or str(tag).startswith("master"):
continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo
try:
version = tools.Version(tag)