Skip to content
Snippets Groups Projects
Unverified Commit dc901a88 authored by David Robertson's avatar David Robertson Committed by GitHub
Browse files

Fix typo in release script (#14920)

* Fix typo in release script

* Changelog
parent 871ff05a
No related branches found
No related tags found
No related merge requests found
Fix typo in release script.
......@@ -438,7 +438,7 @@ def _upload(gh_token: Optional[str]) -> None:
repo = get_repo_and_check_clean_checkout()
tag = repo.tag(f"refs/tags/{tag_name}")
if repo.head.commit != tag.commit:
click.echo("Tag {tag_name} (tag.commit) is not currently checked out!")
click.echo(f"Tag {tag_name} ({tag.commit}) is not currently checked out!")
click.get_current_context().abort()
# Query all the assets corresponding to this release.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment