Skip to content

Commit 781ba94

Browse files
committed
Merge branch 'bug/no-tag-handling' of https://github.com/Autodesk/moldflow-api into bug/no-tag-handling
2 parents efed32c + 7cb1179 commit 781ba94

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,7 @@ def _get_missing_version_tags(build_output):
455455
for item in os.listdir(build_output):
456456
item_path = os.path.join(build_output, item)
457457
if os.path.isdir(item_path) and _is_version_tag(item):
458-
if item != 'latest':
459-
existing_versions.add(item)
458+
existing_versions.add(item)
460459

461460
all_tags = {tag.name for tag in GIT_REPO.tags if _is_version_tag(tag.name)}
462461

0 commit comments

Comments
 (0)