mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-01 23:01:10 -07:00
fixed typo
This commit is contained in:
parent
6f0627ea48
commit
6d8ac37766
1 changed files with 1 additions and 1 deletions
2
.github/workflows/conan-recipe-version.yml
vendored
2
.github/workflows/conan-recipe-version.yml
vendored
|
|
@ -122,7 +122,7 @@ jobs:
|
||||||
latest_branch_version = tools.Version("0.0.0")
|
latest_branch_version = tools.Version("0.0.0")
|
||||||
latest_branch_tag = None
|
latest_branch_tag = None
|
||||||
for tag in repo.git.tag(merged = True).splitlines():
|
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
|
continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo
|
||||||
try:
|
try:
|
||||||
version = tools.Version(tag)
|
version = tools.Version(tag)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue