Skip to content

Commit

Permalink
Fix prerelesae version tag in update_repo.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiter committed Oct 21, 2022
1 parent e07ddc6 commit 83a8356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/update_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def build_versions(
version = version + (0,)
version_str = ".".join(str(p) for p in version)
if tag_name == "wip":
version_str = f'{version_str}-pre{publish_date.strftime("%Y%M%d%H%M%S")}'
version_str = f'{version_str}-pre{publish_date.strftime("%Y%m%d%H%M%S")}'
if is_v78:
version_str = f"{version_str}-solr78"
all_constraints = VERSION_CONSTRAINTS_78
Expand Down

0 comments on commit 83a8356

Please sign in to comment.